aosp12/external/antlr/runtime/Python/tests/t043synpred.g

15 lines
123 B
Plaintext
Raw Normal View History

2023-01-09 17:11:35 +08:00
grammar t043synpred;
options {
language = Python;
}
a: ((s+ P)=> s+ b)? E;
b: P 'foo';
s: S;
S: ' ';
P: '+';
E: '>';