update for support of modern JDKs #113

Closed
fabrice-ducos wants to merge 26 commits from fabrice-ducos/master into master
Showing only changes of commit 3c863714b4 - Show all commits

View File

@@ -1391,7 +1391,7 @@ public class LexState extends Constants {
return; return;
} }
default: { default: {
this.syntaxerror("unexpected symbol " + t.token + " (" + ((char) t.token) + ")"); this.syntaxerror("unexpected symbol near " + token2str(t.token) + " (code " + t.token + ")");
return; return;
} }
} }