
|
If you were logged in you would be able to see more operations.
|
|
|
ANTLR v3
Created: 06/Nov/06 06:21 PM
Updated: 08/Nov/06 02:33 PM
|
|
| Component/s: |
ANTLR Core
|
| Affects Version/s: |
3.0
|
| Fix Version/s: |
3.0b5
|
|
|
grammar bt;
// options \{backtrack=true;} works with this option
a : (b ';')=> b ';'
| b '.'
;
b : '(' b ')'
| ID
;
WS : ' '+ \{channel=99;} ;
ID : 'a'..'z'+ ;
|
|
Description
|
grammar bt;
// options \{backtrack=true;} works with this option
a : (b ';')=> b ';'
| b '.'
;
b : '(' b ')'
| ID
;
WS : ' '+ \{channel=99;} ;
ID : 'a'..'z'+ ; |
Show » |
|