You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following Go compiler error doesn't get turned into a source code link:
rest.go:255: syntax error: unexpected name, expecting semicolon or newline or }
The problem is that Go::link_errs sees that there are three : characters on the line and tries to interpret what's between the second and third :s as a column number, which doesn't work.
link_errs should probably not be counting colons like this. Instead it should use a single regex that optionally recognizes a column number if it's present.
The text was updated successfully, but these errors were encountered:
The following Go compiler error doesn't get turned into a source code link:
The problem is that
Go::link_errs
sees that there are three:
characters on the line and tries to interpret what's between the second and third:
s as a column number, which doesn't work.link_errs
should probably not be counting colons like this. Instead it should use a single regex that optionally recognizes a column number if it's present.The text was updated successfully, but these errors were encountered: