proj-jasper-jasperCompilerErrorMessageNotes1

in Golang, if you end a file without either a newline or semicolon to terminate the last line of code, you get this error:

" test.go:75:1: expected ';', found 'EOF' "

this dude found that confusing (presumably they wanted to error message to mention the lack of newline, not just the lack of semicolons)

--

complaints about the Go runtime/compiler's errors:

" If you index beyond the bounds of an array, the error is "index out of range." It does not report what the index is, or what the valid range is. If you dereference nil, the error is "invalid memory address or nil pointer dereference" (which is it, and why doesn't it know?) If your code has so much as a single unused variable or import, the compiler will not "continue operation," and instead refuse to compile it entirely. " -- http://ridiculousfish.com/blog/posts/go_bloviations.html#go_errors

--