Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

You have probably mixed tree construction operators (like '!') and the new rewrite syntax in a rule.

E.g. this rule will provoke the message:

idList
: ID ( COMMA! ID )* -> ID+
;

Thou shalt not mix rewrite syntax and tree construction operators. Admittedly ANTLR should print out a nicer error message for this.

  • No labels