Sign in
android
/
platform
/
external
/
antlr
/
refs/heads/android15-qpr1-release
/
.
/
runtime
/
Python
/
tests
/
t048rewrite2.g
blob: f98251cfa223f5a9f89ab653e7c77593c8f53b83 [
file
] [
log
] [
blame
] [
edit
]
lexer grammar t048rewrite2
;
options
{
language
=
Python
;
}
ID
:
'a'
..
'z'
+;
INT
:
'0'
..
'9'
+;
SEMI
:
';'
;
PLUS
:
'+'
;
MUL
:
'*'
;
ASSIGN
:
'='
;
WS
:
' '
+;