mirror of
https://github.com/golang/go
synced 2024-11-19 03:14:42 -07:00
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
|
||
|
}
|