1
0
mirror of https://github.com/golang/go synced 2024-11-19 05:24:42 -07:00
go/internal/lsp/source/suggested_fix.go

11 lines
214 B
Go
Raw Normal View History

// +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
}