mirror of
https://github.com/golang/go
synced 2024-11-19 02:04:42 -07:00
17 lines
416 B
Go
17 lines
416 B
Go
|
package cache
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"go/token"
|
||
|
)
|
||
|
|
||
|
// sumFile holds all of the information we know about a sum file.
|
||
|
type sumFile struct {
|
||
|
fileBase
|
||
|
}
|
||
|
|
||
|
func (*sumFile) GetToken(context.Context) *token.File { return nil }
|
||
|
func (*sumFile) setContent(content []byte) {}
|
||
|
func (*sumFile) filename() string { return "" }
|
||
|
func (*sumFile) isActive() bool { return false }
|