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