Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 3 package antlr; 4 5 public interface ANTLRTokenTypes { 6 int EOF = 1; 7 int NULL_TREE_LOOKAHEAD = 3; 8 int LITERAL_tokens = 4; 9 int LITERAL_header = 5; 10 int STRING_LITERAL = 6; 11 int ACTION = 7; 12 int DOC_COMMENT = 8; 13 int LITERAL_lexclass = 9; 14 int LITERAL_class = 10; 15 int LITERAL_extends = 11; 16 int LITERAL_Lexer = 12; 17 int LITERAL_TreeParser = 13; 18 int OPTIONS = 14; 19 int ASSIGN = 15; 20 int SEMI = 16; 21 int RCURLY = 17; 22 int LITERAL_charVocabulary = 18; 23 int CHAR_LITERAL = 19; 24 int INT = 20; 25 int OR = 21; 26 int RANGE = 22; 27 int TOKENS = 23; 28 int TOKEN_REF = 24; 29 int OPEN_ELEMENT_OPTION = 25; 30 int CLOSE_ELEMENT_OPTION = 26; 31 int LPAREN = 27; 32 int RULE_REF = 28; 33 int RPAREN = 29; 34 int LITERAL_Parser = 30; 35 int LITERAL_protected = 31; 36 int LITERAL_public = 32; 37 int LITERAL_private = 33; 38 int BANG = 34; 39 int ARG_ACTION = 35; 40 int LITERAL_returns = 36; 41 int COLON = 37; 42 int LITERAL_throws = 38; 43 int COMMA = 39; 44 int LITERAL_exception = 40; 45 int LITERAL_catch = 41; 46 int NOT_OP = 42; 47 int SEMPRED = 43; 48 int TREE_BEGIN = 44; 49 int QUESTION = 45; 50 int STAR = 46; 51 int PLUS = 47; 52 int IMPLIES = 48; 53 int CARET = 49; 54 int WILDCARD = 50; 55 int LITERAL_options = 51; 56 int WS = 52; 57 int COMMENT = 53; 58 int SL_COMMENT = 54; 59 int ML_COMMENT = 55; 60 int ESC = 56; 61 int DIGIT = 57; 62 int XDIGIT = 58; 63 int VOCAB = 59; 64 int NESTED_ARG_ACTION = 60; 65 int NESTED_ACTION = 61; 66 int WS_LOOP = 62; 67 int INTERNAL_RULE_REF = 63; 68 int WS_OPT = 64; 69 int NOT_USEFUL = 65; 70 } 71
| Popular Tags
|