~ubuntu-branches/ubuntu/lucid/groovy/lucid

« back to all changes in this revision

Viewing changes to src/main/org/codehaus/groovy/antlr/parser/GroovyTokenTypes.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2009-05-19 21:49:37 UTC
  • mfrom: (3.2.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090519214937-56mctwb05t3xd63r
Tags: 1.6.3-1
New upstream release

Show diffs side-by-side

added added

removed removed

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