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
Currently, the ANTLR grammar, when given to ANTLR3, complains with the error:
error(204): pony.g:162:53: duplicate token type '-~' when collapsing subrule into set
It appears that this is due to TK_MINUS_TILDE_NEW being output as simply '-~', and not, say, as TK_LPAREN_NEW is (as a newline, followed by the token). Its definition in the ANTLR grammar currently is identical to TK_MINUS_TILDEs.
The text was updated successfully, but these errors were encountered:
rhencke
added a commit
to rhencke/ponyc
that referenced
this issue
Feb 18, 2017
Currently, the ANTLR grammar, when given to ANTLR3, complains with the error:
It appears that this is due to
TK_MINUS_TILDE_NEW
being output as simply'-~'
, and not, say, asTK_LPAREN_NEW
is (as a newline, followed by the token). Its definition in the ANTLR grammar currently is identical toTK_MINUS_TILDE
s.The text was updated successfully, but these errors were encountered: