What does 'go version' print?
go version
go version go1.2 linux/amd64
What steps reproduce the problem?
If possible, include a link to a program on play.golang.org.
http://play.golang.org/p/czb8BWDs4_
What happened?
I got an error.
What should have happened instead?
The error I received should tell me where in the very large bytestream it was parsing,
it encountered a parsing error.
Please provide any additional information below.
I checked the source tree on code.google.com and this still seemed unimplemented.
-A
The text was updated successfully, but these errors were encountered:
func (e *SyntaxError) Error() string { return e.msg }
Should be something like:
func (e *SyntaxError) Error() string { return fmt.Sprintf("%s at offset: %s", e.msg,
e.Offset)
}
or similar.
by antarus@google.com:
The text was updated successfully, but these errors were encountered: