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