mirror of
https://github.com/golang/go
synced 2024-11-18 21:05:02 -07:00
be5259f298
This relates to https://github.com/golang/go/issues/31374 and should switch all instances within `gopls` to use `x/errors` instead of `fmt` to create new errors. Change-Id: I18339b75d12418d852e0dcc2ba0ed6c2970783b3 GitHub-Last-Rev: f4a55d9b79e7458ef1f1e06cb5eabbabd884f321 GitHub-Pull-Request: golang/tools#108 Reviewed-on: https://go-review.googlesource.com/c/tools/+/179880 Run-TryBot: Rebecca Stambler <rstambler@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
26 lines
630 B
Go
26 lines
630 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cache
|
|
|
|
import (
|
|
"context"
|
|
"go/token"
|
|
|
|
errors "golang.org/x/xerrors"
|
|
)
|
|
|
|
// sumFile holds all of the information we know about a sum file.
|
|
type sumFile struct {
|
|
fileBase
|
|
}
|
|
|
|
func (*sumFile) GetToken(context.Context) (*token.File, error) {
|
|
return nil, errors.Errorf("GetToken: not implemented")
|
|
}
|
|
|
|
func (*sumFile) setContent(content []byte) {}
|
|
func (*sumFile) filename() string { return "" }
|
|
func (*sumFile) isActive() bool { return false }
|