1 3 package org.codehaus.groovy.antlr.parser; 4 import org.codehaus.groovy.antlr.*; 5 import java.util.*; 6 import java.io.InputStream ; 7 import java.io.Reader ; 8 import antlr.InputBuffer; 9 import antlr.LexerSharedInputState; 10 11 public interface GroovyTokenTypes { 12 int EOF = 1; 13 int NULL_TREE_LOOKAHEAD = 3; 14 int BLOCK = 4; 15 int MODIFIERS = 5; 16 int OBJBLOCK = 6; 17 int SLIST = 7; 18 int METHOD_DEF = 8; 19 int VARIABLE_DEF = 9; 20 int INSTANCE_INIT = 10; 21 int STATIC_INIT = 11; 22 int TYPE = 12; 23 int CLASS_DEF = 13; 24 int INTERFACE_DEF = 14; 25 int PACKAGE_DEF = 15; 26 int ARRAY_DECLARATOR = 16; 27 int EXTENDS_CLAUSE = 17; 28 int IMPLEMENTS_CLAUSE = 18; 29 int PARAMETERS = 19; 30 int PARAMETER_DEF = 20; 31 int LABELED_STAT = 21; 32 int TYPECAST = 22; 33 int INDEX_OP = 23; 34 int POST_INC = 24; 35 int POST_DEC = 25; 36 int METHOD_CALL = 26; 37 int EXPR = 27; 38 int IMPORT = 28; 39 int UNARY_MINUS = 29; 40 int UNARY_PLUS = 30; 41 int CASE_GROUP = 31; 42 int ELIST = 32; 43 int FOR_INIT = 33; 44 int FOR_CONDITION = 34; 45 int FOR_ITERATOR = 35; 46 int EMPTY_STAT = 36; 47 int FINAL = 37; 48 int ABSTRACT = 38; 49 int UNUSED_GOTO = 39; 50 int UNUSED_CONST = 40; 51 int UNUSED_DO = 41; 52 int STRICTFP = 42; 53 int SUPER_CTOR_CALL = 43; 54 int CTOR_CALL = 44; 55 int CTOR_IDENT = 45; 56 int VARIABLE_PARAMETER_DEF = 46; 57 int STRING_CONSTRUCTOR = 47; 58 int STRING_CTOR_MIDDLE = 48; 59 int CLOSED_BLOCK = 49; 60 int IMPLICIT_PARAMETERS = 50; 61 int SELECT_SLOT = 51; 62 int DYNAMIC_MEMBER = 52; 63 int LABELED_ARG = 53; 64 int SPREAD_ARG = 54; 65 int SPREAD_MAP_ARG = 55; 66 int SCOPE_ESCAPE = 56; 67 int LIST_CONSTRUCTOR = 57; 68 int MAP_CONSTRUCTOR = 58; 69 int FOR_IN_ITERABLE = 59; 70 int STATIC_IMPORT = 60; 71 int ENUM_DEF = 61; 72 int ENUM_CONSTANT_DEF = 62; 73 int FOR_EACH_CLAUSE = 63; 74 int ANNOTATION_DEF = 64; 75 int ANNOTATIONS = 65; 76 int ANNOTATION = 66; 77 int ANNOTATION_MEMBER_VALUE_PAIR = 67; 78 int ANNOTATION_FIELD_DEF = 68; 79 int ANNOTATION_ARRAY_INIT = 69; 80 int TYPE_ARGUMENTS = 70; 81 int TYPE_ARGUMENT = 71; 82 int TYPE_PARAMETERS = 72; 83 int TYPE_PARAMETER = 73; 84 int WILDCARD_TYPE = 74; 85 int TYPE_UPPER_BOUNDS = 75; 86 int TYPE_LOWER_BOUNDS = 76; 87 int SH_COMMENT = 77; 88 int LITERAL_package = 78; 89 int LITERAL_import = 79; 90 int LITERAL_static = 80; 91 int LITERAL_def = 81; 92 int AT = 82; 93 int IDENT = 83; 94 int LBRACK = 84; 95 int RBRACK = 85; 96 int DOT = 86; 97 int LPAREN = 87; 98 int LITERAL_class = 88; 99 int LITERAL_interface = 89; 100 int LITERAL_enum = 90; 101 int QUESTION = 91; 102 int LITERAL_extends = 92; 103 int LITERAL_super = 93; 104 int LT = 94; 105 int COMMA = 95; 106 int GT = 96; 107 int SR = 97; 108 int BSR = 98; 109 int LITERAL_void = 99; 110 int LITERAL_boolean = 100; 111 int LITERAL_byte = 101; 112 int LITERAL_char = 102; 113 int LITERAL_short = 103; 114 int LITERAL_int = 104; 115 int LITERAL_float = 105; 116 int LITERAL_long = 106; 117 int LITERAL_double = 107; 118 int LITERAL_any = 108; 119 int STAR = 109; 120 int LITERAL_as = 110; 121 int LITERAL_private = 111; 122 int LITERAL_public = 112; 123 int LITERAL_protected = 113; 124 int LITERAL_transient = 114; 125 int LITERAL_native = 115; 126 int LITERAL_threadsafe = 116; 127 int LITERAL_synchronized = 117; 128 int LITERAL_volatile = 118; 129 int RPAREN = 119; 130 int ASSIGN = 120; 131 int BAND = 121; 132 int LCURLY = 122; 133 int RCURLY = 123; 134 int SEMI = 124; 135 int NLS = 125; 136 int LITERAL_default = 126; 137 int LITERAL_implements = 127; 138 int LITERAL_this = 128; 139 int STRING_LITERAL = 129; 140 int LITERAL_throws = 130; 141 int TRIPLE_DOT = 131; 142 int CLOSURE_OP = 132; 143 int LOR = 133; 144 int BOR = 134; 145 int COLON = 135; 146 int LITERAL_if = 136; 147 int LITERAL_else = 137; 148 int LITERAL_while = 138; 149 int LITERAL_with = 139; 150 int LITERAL_switch = 140; 151 int LITERAL_for = 141; 152 int LITERAL_in = 142; 153 int LITERAL_return = 143; 154 int LITERAL_break = 144; 155 int LITERAL_continue = 145; 156 int LITERAL_throw = 146; 157 int LITERAL_assert = 147; 158 int PLUS = 148; 159 int MINUS = 149; 160 int LITERAL_case = 150; 161 int LITERAL_try = 151; 162 int LITERAL_finally = 152; 163 int LITERAL_catch = 153; 164 int SPREAD_DOT = 154; 165 int OPTIONAL_DOT = 155; 166 int MEMBER_POINTER = 156; 167 int PLUS_ASSIGN = 157; 168 int MINUS_ASSIGN = 158; 169 int STAR_ASSIGN = 159; 170 int DIV_ASSIGN = 160; 171 int MOD_ASSIGN = 161; 172 int SR_ASSIGN = 162; 173 int BSR_ASSIGN = 163; 174 int SL_ASSIGN = 164; 175 int BAND_ASSIGN = 165; 176 int BXOR_ASSIGN = 166; 177 int BOR_ASSIGN = 167; 178 int STAR_STAR_ASSIGN = 168; 179 int LAND = 169; 180 int BXOR = 170; 181 int REGEX_FIND = 171; 182 int REGEX_MATCH = 172; 183 int NOT_EQUAL = 173; 184 int EQUAL = 174; 185 int COMPARE_TO = 175; 186 int LE = 176; 187 int GE = 177; 188 int LITERAL_instanceof = 178; 189 int SL = 179; 190 int RANGE_INCLUSIVE = 180; 191 int RANGE_EXCLUSIVE = 181; 192 int INC = 182; 193 int DIV = 183; 194 int MOD = 184; 195 int DEC = 185; 196 int STAR_STAR = 186; 197 int BNOT = 187; 198 int LNOT = 188; 199 int DOLLAR = 189; 200 int STRING_CTOR_START = 190; 201 int STRING_CTOR_END = 191; 202 int LITERAL_new = 192; 203 int LITERAL_true = 193; 204 int LITERAL_false = 194; 205 int LITERAL_null = 195; 206 int NUM_INT = 196; 207 int NUM_FLOAT = 197; 208 int NUM_LONG = 198; 209 int NUM_DOUBLE = 199; 210 int NUM_BIG_INT = 200; 211 int NUM_BIG_DECIMAL = 201; 212 int WS = 202; 213 int ONE_NL = 203; 214 int SL_COMMENT = 204; 215 int ML_COMMENT = 205; 216 int STRING_CH = 206; 217 int REGEXP_LITERAL = 207; 218 int REGEXP_CTOR_END = 208; 219 int REGEXP_SYMBOL = 209; 220 int ESC = 210; 221 int STRING_NL = 211; 222 int HEX_DIGIT = 212; 223 int VOCAB = 213; 224 int LETTER = 214; 225 int DIGIT = 215; 226 int EXPONENT = 216; 227 int FLOAT_SUFFIX = 217; 228 int BIG_SUFFIX = 218; 229 } 230 | Popular Tags |