djrieger / mjplusplus

A compiler for the MiniJava language
http://djrieger.github.io/mjplusplus/doc/doxygen/html/
6 stars 1 forks source link

Fix incomplete error printing #34

Closed djrieger closed 9 years ago

djrieger commented 9 years ago

Parser/lexer errors currently look like this:

arser error at line 5, column 7: parsing "int": 
      int a = 3;
      ^

while semantic errors don't get truncated:

Semantic error at line 2, column 26: Type String of parameter a undeclared.
    public static void main(String[] a) {}
Nidan commented 9 years ago

fixed in 2d76049