
|
If you were logged in you would be able to see more operations.
|
|
|
ANTLR v3
Created: 29/Apr/07 03:34 PM
Updated: 03/May/07 06:11 PM
|
|
| Component/s: |
ANTLR Core
|
| Affects Version/s: |
3.0b7
|
| Fix Version/s: |
3.0b8
|
|
|
Benjamin reports:
grammar T;
a: ((s+ P)=> s+ b)? E;
b: P 'foo';
s: S;
S: ' ';
P: '+';
E: '>';
Look at synpred1_fragment(), there's a line
int alt=;
Somethings missing there...
|
|
Description
|
Benjamin reports:
grammar T;
a: ((s+ P)=> s+ b)? E;
b: P 'foo';
s: S;
S: ' ';
P: '+';
E: '>';
Look at synpred1_fragment(), there's a line
int alt=;
Somethings missing there...
|
Show » |
|