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
There are several syntax errors in Pony.g due to backslash symbols not being escaped - they are printed as '\', but ANTLR requires them to be printed as '\\'
For example, for annotatedrawseq: : ('\' ID (',' ID)* '\')? (exprseq | jump)
should be: : ('\\' ID (',' ID)* '\\')? (exprseq | jump)
The text was updated successfully, but these errors were encountered:
rhencke
added a commit
to rhencke/ponyc
that referenced
this issue
Feb 18, 2017
There are several syntax errors in Pony.g due to backslash symbols not being escaped - they are printed as
'\'
, but ANTLR requires them to be printed as'\\'
For example, for
annotatedrawseq
:: ('\' ID (',' ID)* '\')? (exprseq | jump)
should be:
: ('\\' ID (',' ID)* '\\')? (exprseq | jump)
The text was updated successfully, but these errors were encountered: