@mike-lischke/antlr-tgen
Version:
A generator for antlr-ng runtime test cases
32 lines (26 loc) • 788 B
Plain Text
[notes]
In this case, we have to ensure that the predicates are not tested
during the closure after recognizing the 1st ID. The closure will
fall off the end of 'a' 1st time and reach into the a[1] rule
invocation. It should not execute predicates because it does not know
what the parameter is. The context stack will not be empty and so
they should be ignored. It will not affect recognition, however. We
are really making sure the ATN simulation doesn't crash with context
object issues when it encounters preds during FOLLOW.
[type]
Parser
[grammar]
grammar T;
@parser::members {<InitIntMember("i","0")>}
s : a[2] a[1];
a[int i]
: {<ValEquals("$i","1")>}? ID
| {<ValEquals("$i","2")>}? ID
;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') -> skip ;
[start]
s
[input]
a b