*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / test / PHPParserConstants.java
1 /* Generated By:JavaCC: Do not edit this line. PHPParserConstants.java */
2 package test;
3
4 public interface PHPParserConstants {
5
6   int EOF = 0;
7   int PHPSTARTSHORT = 1;
8   int PHPSTARTLONG = 2;
9   int PHPECHOSTART = 3;
10   int PHPEND = 4;
11   int SINGLE_LINE_COMMENT = 14;
12   int SINGLE_LINE_COMMENT_PHPEND = 15;
13   int FORMAL_COMMENT = 16;
14   int MULTI_LINE_COMMENT = 17;
15   int CLASS = 19;
16   int FUNCTION = 20;
17   int VAR = 21;
18   int IF = 22;
19   int ELSEIF = 23;
20   int ELSE = 24;
21   int ARRAY = 25;
22   int BREAK = 26;
23   int PRINT = 27;
24   int ECHO = 28;
25   int INCLUDE = 29;
26   int REQUIRE = 30;
27   int INCLUDE_ONCE = 31;
28   int REQUIRE_ONCE = 32;
29   int GLOBAL = 33;
30   int STATIC = 34;
31   int CLASSACCESS = 35;
32   int STATICCLASSACCESS = 36;
33   int ARRAYASSIGN = 37;
34   int LIST = 38;
35   int CASE = 39;
36   int CONST = 40;
37   int CONTINUE = 41;
38   int _DEFAULT = 42;
39   int DO = 43;
40   int EXTENDS = 44;
41   int FOR = 45;
42   int GOTO = 46;
43   int NEW = 47;
44   int NULL = 48;
45   int RETURN = 49;
46   int SUPER = 50;
47   int SWITCH = 51;
48   int THIS = 52;
49   int TRUE = 53;
50   int FALSE = 54;
51   int WHILE = 55;
52   int ENDWHILE = 56;
53   int ENDIF = 57;
54   int ENDFOR = 58;
55   int FOREACH = 59;
56   int AS = 60;
57   int STRING = 61;
58   int OBJECT = 62;
59   int BOOL = 63;
60   int BOOLEAN = 64;
61   int REAL = 65;
62   int DOUBLE = 66;
63   int FLOAT = 67;
64   int INT = 68;
65   int INTEGER = 69;
66   int _ORL = 70;
67   int _ANDL = 71;
68   int INTEGER_LITERAL = 72;
69   int DECIMAL_LITERAL = 73;
70   int HEX_LITERAL = 74;
71   int OCTAL_LITERAL = 75;
72   int FLOATING_POINT_LITERAL = 76;
73   int EXPONENT = 77;
74   int STRING_LITERAL = 78;
75   int STRING_1 = 79;
76   int STRING_2 = 80;
77   int STRING_3 = 81;
78   int IDENTIFIER = 82;
79   int LETTER = 83;
80   int DIGIT = 84;
81   int SPECIAL = 85;
82   int LPAREN = 86;
83   int RPAREN = 87;
84   int LBRACE = 88;
85   int RBRACE = 89;
86   int LBRACKET = 90;
87   int RBRACKET = 91;
88   int SEMICOLON = 92;
89   int COMMA = 93;
90   int DOT = 94;
91   int GT = 95;
92   int LT = 96;
93   int EQ = 97;
94   int LE = 98;
95   int GE = 99;
96   int NE = 100;
97   int DIF = 101;
98   int BANGDOUBLEEQUAL = 102;
99   int TRIPLEEQUAL = 103;
100   int ASSIGN = 104;
101   int PLUSASSIGN = 105;
102   int MINUSASSIGN = 106;
103   int STARASSIGN = 107;
104   int SLASHASSIGN = 108;
105   int ANDASSIGN = 109;
106   int ORASSIGN = 110;
107   int XORASSIGN = 111;
108   int DOTASSIGN = 112;
109   int REMASSIGN = 113;
110   int TILDEEQUAL = 114;
111   int AT = 115;
112   int DOLLAR = 116;
113   int BANG = 117;
114   int HOOK = 118;
115   int COLON = 119;
116   int SC_OR = 120;
117   int SC_AND = 121;
118   int INCR = 122;
119   int DECR = 123;
120   int PLUS = 124;
121   int MINUS = 125;
122   int STAR = 126;
123   int SLASH = 127;
124   int BIT_AND = 128;
125   int BIT_OR = 129;
126   int XOR = 130;
127   int REM = 131;
128   int LSHIFT = 132;
129   int RSIGNEDSHIFT = 133;
130   int RUNSIGNEDSHIFT = 134;
131   int LSHIFTASSIGN = 135;
132   int RSIGNEDSHIFTASSIGN = 136;
133   int DOLLAR_ID = 137;
134
135   int DEFAULT = 0;
136   int PHPPARSING = 1;
137   int IN_SINGLE_LINE_COMMENT = 2;
138   int IN_FORMAL_COMMENT = 3;
139   int IN_MULTI_LINE_COMMENT = 4;
140
141   String[] tokenImage = {
142     "<EOF>",
143     "\"<?\"",
144     "\"<?php\"",
145     "\"<?=\"",
146     "\"?>\"",
147     "<token of kind 5>",
148     "\" \"",
149     "\"\\t\"",
150     "\"\\n\"",
151     "\"\\r\"",
152     "\"\\f\"",
153     "\"//\"",
154     "<token of kind 12>",
155     "\"/*\"",
156     "<SINGLE_LINE_COMMENT>",
157     "\"?>\"",
158     "\"*/\"",
159     "\"*/\"",
160     "<token of kind 18>",
161     "\"class\"",
162     "\"function\"",
163     "\"var\"",
164     "\"if\"",
165     "\"elseif\"",
166     "\"else\"",
167     "\"array\"",
168     "\"break\"",
169     "\"print\"",
170     "\"echo\"",
171     "\"include\"",
172     "\"require\"",
173     "\"include_once\"",
174     "\"require_once\"",
175     "\"global\"",
176     "\"static\"",
177     "\"->\"",
178     "\"::\"",
179     "\"=>\"",
180     "\"list\"",
181     "\"case\"",
182     "\"const\"",
183     "\"continue\"",
184     "\"default\"",
185     "\"do\"",
186     "\"extends\"",
187     "\"for\"",
188     "\"goto\"",
189     "\"new\"",
190     "\"null\"",
191     "\"return\"",
192     "\"super\"",
193     "\"switch\"",
194     "\"this\"",
195     "\"true\"",
196     "\"false\"",
197     "\"while\"",
198     "\"endwhile\"",
199     "\"endif\"",
200     "\"endfor\"",
201     "\"foreach\"",
202     "\"as\"",
203     "\"string\"",
204     "\"object\"",
205     "\"bool\"",
206     "\"boolean\"",
207     "\"real\"",
208     "\"double\"",
209     "\"float\"",
210     "\"int\"",
211     "\"integer\"",
212     "\"OR\"",
213     "\"AND\"",
214     "<INTEGER_LITERAL>",
215     "<DECIMAL_LITERAL>",
216     "<HEX_LITERAL>",
217     "<OCTAL_LITERAL>",
218     "<FLOATING_POINT_LITERAL>",
219     "<EXPONENT>",
220     "<STRING_LITERAL>",
221     "<STRING_1>",
222     "<STRING_2>",
223     "<STRING_3>",
224     "<IDENTIFIER>",
225     "<LETTER>",
226     "<DIGIT>",
227     "<SPECIAL>",
228     "\"(\"",
229     "\")\"",
230     "\"{\"",
231     "\"}\"",
232     "\"[\"",
233     "\"]\"",
234     "\";\"",
235     "\",\"",
236     "\".\"",
237     "\">\"",
238     "\"<\"",
239     "\"==\"",
240     "\"<=\"",
241     "\">=\"",
242     "\"!=\"",
243     "\"<>\"",
244     "\"!==\"",
245     "\"===\"",
246     "\"=\"",
247     "\"+=\"",
248     "\"-=\"",
249     "\"*=\"",
250     "\"/=\"",
251     "\"&=\"",
252     "\"|=\"",
253     "\"^=\"",
254     "\".=\"",
255     "\"%=\"",
256     "\"~=\"",
257     "\"@\"",
258     "\"$\"",
259     "\"!\"",
260     "\"?\"",
261     "\":\"",
262     "\"||\"",
263     "\"&&\"",
264     "\"++\"",
265     "\"--\"",
266     "\"+\"",
267     "\"-\"",
268     "\"*\"",
269     "\"/\"",
270     "\"&\"",
271     "\"|\"",
272     "\"^\"",
273     "\"%\"",
274     "\"<<\"",
275     "\">>\"",
276     "\">>>\"",
277     "\"<<=\"",
278     "\">>=\"",
279     "<DOLLAR_ID>",
280     "\"?>\"",
281   };
282
283 }