1 package antlr; 3 4 public interface ANTLRTokdefParserTokenTypes { 5 int EOF = 1; 6 int NULL_TREE_LOOKAHEAD = 3; 7 int ID = 4; 8 int STRING = 5; 9 int ASSIGN = 6; 10 int LPAREN = 7; 11 int RPAREN = 8; 12 int INT = 9; 13 int WS = 10; 14 int SL_COMMENT = 11; 15 int ML_COMMENT = 12; 16 int ESC = 13; 17 int DIGIT = 14; 18 int XDIGIT = 15; 19 int VOCAB = 16; 20 } 21 | Popular Tags |