Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syntax errors in ANTLR Pony grammar. #1600

Closed
rhencke opened this issue Feb 18, 2017 · 1 comment
Closed

Syntax errors in ANTLR Pony grammar. #1600

rhencke opened this issue Feb 18, 2017 · 1 comment

Comments

@rhencke
Copy link
Contributor

rhencke commented 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)

@jemc
Copy link
Member

jemc commented Feb 18, 2017

Fixed by #1601.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants