This website requires JavaScript.
Explore
Help
Sign In
forgetest1
/
antlr
forked from
jasder/antlr
Watch
1
Star
0
Fork
You've already forked antlr
0
Code
Issues
Pull Requests
1
Releases
Wiki
Activity
9eb2a31179
antlr
/
tool
/
playground
/
T.g4
13 lines
103 B
Plaintext
Raw
Normal View
History
Unescape
Escape
added playground stuff
2015-05-23 03:03:28 +08:00
grammar T;
a
: 'b' #alt1
| 'c' #alt2
;
b : 'x' | 'y' {} ;
update comments, rename var.
2015-05-30 05:10:08 +08:00
e : e '*' e
| 'foo'
;