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
This will fail to compile. It turns out that since the Java compiler interprets Unicode character escapes before parsing, "\u000D" is equivalent to having a literal carriage return in the middle of a string. Instead of \u000D and \u000A, ANTLR should emit \r and \n.