blob: 183b7d526ebc2facb2b89c144438cc774ffed6bd [file] [log] [blame]
This test exercises basic 'stub methods' functionality, with resolve support.
See basic.txt for the same test without resolve support.
-- capabilities.json --
{
"textDocument": {
"codeAction": {
"dataSupport": true,
"resolveSupport": {
"properties": ["edit"]
}
}
}
}
-- go.mod --
module example.com
go 1.12
-- a/a.go --
package a
type C int
var _ error = C(0) //@suggestedfix(re"C.0.", re"missing method Error", stub)
-- @stub/a/a.go --
@@ -5 +5,5 @@
+// Error implements error.
+func (c C) Error() string {
+ panic("unimplemented")
+}
+