mirror of
https://github.com/golang/go
synced 2024-11-19 02:24:41 -07:00
747b8b11d4
This change adds a source.Error type which is used to collect the error information that comes out of the loading, parsing, and type checking stages. We also add specific sources per-error, rather than having them all be labeled as "LSP". This change will enable follow-ups that do a better job of extracting error ranges. Change-Id: I3fbb5e42d66aa2c5bb1b2f41d1eadfc45f3a749b Reviewed-on: https://go-review.googlesource.com/c/tools/+/202298 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
24 lines
1.1 KiB
Go
24 lines
1.1 KiB
Go
// +build go1.11
|
|
|
|
package bad
|
|
|
|
var a unknown //@item(global_a, "a", "unknown", "var"),diag("unknown", "compiler", "undeclared name: unknown")
|
|
|
|
func random() int { //@item(random, "random", "func() int", "func")
|
|
//@complete("", global_a, bob, random, random2, random3, stuff)
|
|
return 0
|
|
}
|
|
|
|
func random2(y int) int { //@item(random2, "random2", "func(y int) int", "func"),item(bad_y_param, "y", "int", "var")
|
|
x := 6 //@item(x, "x", "int", "var"),diag("x", "compiler", "x declared but not used")
|
|
var q blah //@item(q, "q", "blah", "var"),diag("q", "compiler", "q declared but not used"),diag("blah", "compiler", "undeclared name: blah")
|
|
var t blob //@item(t, "t", "blob", "var"),diag("t", "compiler", "t declared but not used"),diag("blob", "compiler", "undeclared name: blob")
|
|
//@complete("", q, t, x, bad_y_param, global_a, bob, random, random2, random3, stuff)
|
|
|
|
return y
|
|
}
|
|
|
|
func random3(y ...int) { //@item(random3, "random3", "func(y ...int)", "func"),item(y_variadic_param, "y", "[]int", "var")
|
|
//@complete("", y_variadic_param, global_a, bob, random, random2, random3, stuff)
|
|
}
|