SmaCCRefactoring / SmaCC

Smalltalk Compiler Compiler : a parser generator
Other
33 stars 15 forks source link

Annotated non-terminals can have + * ? qualifiers #15

Closed ThierryGoubier closed 7 years ago

ThierryGoubier commented 7 years ago

The following should not raise a syntax error:

Function: "(" Argument 'argument' ? ")" {{}};

ThierryGoubier commented 7 years ago

In fact, parser accepted the following

Function: "(" Argument ? 'argument' ")" {{}};
ThierryGoubier commented 7 years ago

Solved with 91ea35d