android_mt6572_jiabo/external/antlr/antlr-3.4/runtime/Python/tests/t048rewrite2.g
2025-09-05 16:56:03 +08:00

12 lines
155 B
Text

lexer grammar t048rewrite2;
options {
language=Python;
}
ID : 'a'..'z'+;
INT : '0'..'9'+;
SEMI : ';';
PLUS : '+';
MUL : '*';
ASSIGN : '=';
WS : ' '+;