mirror of
https://github.com/golang/go
synced 2024-11-19 01:44:40 -07:00
e8e6be9f45
Change-Id: Ia9e077e6b9cf8a817103d90481768ae99409c574 Reviewed-on: https://go-review.googlesource.com/c/tools/+/183264 Run-TryBot: Michael Matloob <matloob@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
11 lines
214 B
Go
11 lines
214 B
Go
// +build !experimental
|
|
|
|
package source
|
|
|
|
import "go/token"
|
|
import "golang.org/x/tools/go/analysis"
|
|
|
|
func getCodeActions(fset *token.FileSet, diag analysis.Diagnostic) ([]SuggestedFixes, error) {
|
|
return nil, nil
|
|
}
|