We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Workspace APIs such as LocateDeclaration expect a 1s based numbering system. ChangeFile expects a 0s based system.
package foo var Foof int = 1 func Foo() int { return Foof }
Calling LocateDeclaration for Foof in return Foof is (4, 9). The same for ChangeFile is (3, 8).
Foof
return Foof
The numbering systems must be consistent.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Workspace APIs such as LocateDeclaration expect a 1s based numbering system. ChangeFile expects a 0s based system.
Calling LocateDeclaration for
Foof
inreturn Foof
is (4, 9). The same for ChangeFile is (3, 8).The numbering systems must be consistent.
The text was updated successfully, but these errors were encountered: