mirror of
https://github.com/golang/go.git
synced 2025-05-29 19:35:42 +00:00
This starts hooking up the analysis framework into the LSP. It runs the Tests analysis (which I think might be the only one that doesn't need facts or results) and reports its diagnostics if there are no parse or typecheck failures. Next step: figure out how to pass through results. Change-Id: I21702d1cf5d54da399df54437f556b9351caa864 Reviewed-on: https://go-review.googlesource.com/c/161358 Run-TryBot: Rebecca Stambler <rstambler@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
20 lines
607 B
Go
20 lines
607 B
Go
package good //@diag("package", "", "")
|
|
|
|
import (
|
|
"golang.org/x/tools/internal/lsp/types" //@item(types_import, "types", "\"golang.org/x/tools/internal/lsp/types\"", "package")
|
|
)
|
|
|
|
func random() int { //@item(good_random, "random()", "int", "func")
|
|
y := 6 + 7
|
|
return y
|
|
}
|
|
|
|
func random2(y int) int { //@item(good_random2, "random2(y int)", "int", "func"),item(good_y_param, "y", "int", "var")
|
|
//@complete("", good_y_param, types_import, good_random, good_random2, good_stuff)
|
|
var b types.Bob = &types.X{}
|
|
if _, ok := b.(*types.X); ok { //@complete("X", Bob_interface, X_struct, Y_struct)
|
|
}
|
|
|
|
return y
|
|
}
|