finished basic account add
[Bookkeeping.git] / grammar / baseparser.g
blob5447c29082aa00fca1f8696f6b49f2aa76c221d5
3 /* LEXER 
4  */
5 class BaseParser extends Base1Lexer;
7 options { 
8         
9     k=10; // needed for newline junk
10     charVocabulary='\u0000'..'\u007F'; // allow ascii
11         importVocab=Base2Lexer; 
12         
16 //TOKEN_LITERAL:        ("debit" | "credit")+; 
17 some_thing: BASE_TWO "something" BASE_ONE { System.out.println("Found SOME_THING"); };