mirror of
https://github.com/golang/go
synced 2024-11-19 16:14:49 -07:00
a8576e2603
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>
22 lines
507 B
Go
22 lines
507 B
Go
// +build go1.11
|
|
|
|
package bad
|
|
|
|
func stuff() { //@item(stuff, "stuff()", "", "func")
|
|
x := "heeeeyyyy"
|
|
random2(x) //@diag("x", "LSP", "cannot use x (variable of type string) as int value in argument to random2")
|
|
random2(1) //@complete("dom", random, random2, random3)
|
|
y := 3 //@diag("y", "LSP", "y declared but not used")
|
|
}
|
|
|
|
type bob struct { //@item(bob, "bob", "struct{...}", "struct")
|
|
x int
|
|
}
|
|
|
|
func _() {
|
|
var q int
|
|
_ = &bob{
|
|
f: q, //@diag("f", "LSP", "unknown field f in struct literal")
|
|
}
|
|
}
|