blob: 6293153ce091153c238fd0f5cfbf9b9069cb25c8 [file] [log] [blame]
grammar t043synpred;
options {
language = JavaScript;
}
a: ((s+ P)=> s+ b)? E;
b: P 'foo';
s: S;
S: ' ';
P: '+';
E: '>';