X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java b/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java index e481eff..f83035d 100644 --- a/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java +++ b/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java @@ -31,105 +31,106 @@ public interface PHPParserConstants { int CLASSACCESS = 35; int STATICCLASSACCESS = 36; int ARRAYASSIGN = 37; - int CASE = 38; - int CONST = 39; - int CONTINUE = 40; - int _DEFAULT = 41; - int DO = 42; - int EXTENDS = 43; - int FOR = 44; - int GOTO = 45; - int NEW = 46; - int NULL = 47; - int RETURN = 48; - int SUPER = 49; - int SWITCH = 50; - int THIS = 51; - int TRUE = 52; - int FALSE = 53; - int WHILE = 54; - int ENDWHILE = 55; - int ENDIF = 56; - int ENDFOR = 57; - int FOREACH = 58; - int AS = 59; - int STRING = 60; - int OBJECT = 61; - int BOOL = 62; - int BOOLEAN = 63; - int REAL = 64; - int DOUBLE = 65; - int FLOAT = 66; - int INT = 67; - int INTEGER = 68; - int _ORL = 69; - int _ANDL = 70; - int INTEGER_LITERAL = 71; - int DECIMAL_LITERAL = 72; - int HEX_LITERAL = 73; - int OCTAL_LITERAL = 74; - int FLOATING_POINT_LITERAL = 75; - int EXPONENT = 76; - int STRING_LITERAL = 77; - int STRING_1 = 78; - int STRING_2 = 79; - int STRING_3 = 80; - int IDENTIFIER = 81; - int LETTER = 82; - int DIGIT = 83; - int SPECIAL = 84; - int LPAREN = 85; - int RPAREN = 86; - int LBRACE = 87; - int RBRACE = 88; - int LBRACKET = 89; - int RBRACKET = 90; - int SEMICOLON = 91; - int COMMA = 92; - int DOT = 93; - int GT = 94; - int LT = 95; - int EQ = 96; - int LE = 97; - int GE = 98; - int NE = 99; - int DIF = 100; - int BANGDOUBLEEQUAL = 101; - int TRIPLEEQUAL = 102; - int ASSIGN = 103; - int PLUSASSIGN = 104; - int MINUSASSIGN = 105; - int STARASSIGN = 106; - int SLASHASSIGN = 107; - int ANDASSIGN = 108; - int ORASSIGN = 109; - int XORASSIGN = 110; - int DOTASSIGN = 111; - int REMASSIGN = 112; - int TILDEEQUAL = 113; - int AT = 114; - int DOLLAR = 115; - int BANG = 116; - int HOOK = 117; - int COLON = 118; - int SC_OR = 119; - int SC_AND = 120; - int INCR = 121; - int DECR = 122; - int PLUS = 123; - int MINUS = 124; - int STAR = 125; - int SLASH = 126; - int BIT_AND = 127; - int BIT_OR = 128; - int XOR = 129; - int REM = 130; - int LSHIFT = 131; - int RSIGNEDSHIFT = 132; - int RUNSIGNEDSHIFT = 133; - int LSHIFTASSIGN = 134; - int RSIGNEDSHIFTASSIGN = 135; - int DOLLAR_ID = 136; + int LIST = 38; + int CASE = 39; + int CONST = 40; + int CONTINUE = 41; + int _DEFAULT = 42; + int DO = 43; + int EXTENDS = 44; + int FOR = 45; + int GOTO = 46; + int NEW = 47; + int NULL = 48; + int RETURN = 49; + int SUPER = 50; + int SWITCH = 51; + int THIS = 52; + int TRUE = 53; + int FALSE = 54; + int WHILE = 55; + int ENDWHILE = 56; + int ENDIF = 57; + int ENDFOR = 58; + int FOREACH = 59; + int AS = 60; + int STRING = 61; + int OBJECT = 62; + int BOOL = 63; + int BOOLEAN = 64; + int REAL = 65; + int DOUBLE = 66; + int FLOAT = 67; + int INT = 68; + int INTEGER = 69; + int _ORL = 70; + int _ANDL = 71; + int INTEGER_LITERAL = 72; + int DECIMAL_LITERAL = 73; + int HEX_LITERAL = 74; + int OCTAL_LITERAL = 75; + int FLOATING_POINT_LITERAL = 76; + int EXPONENT = 77; + int STRING_LITERAL = 78; + int STRING_1 = 79; + int STRING_2 = 80; + int STRING_3 = 81; + int IDENTIFIER = 82; + int LETTER = 83; + int DIGIT = 84; + int SPECIAL = 85; + int LPAREN = 86; + int RPAREN = 87; + int LBRACE = 88; + int RBRACE = 89; + int LBRACKET = 90; + int RBRACKET = 91; + int SEMICOLON = 92; + int COMMA = 93; + int DOT = 94; + int GT = 95; + int LT = 96; + int EQ = 97; + int LE = 98; + int GE = 99; + int NE = 100; + int DIF = 101; + int BANGDOUBLEEQUAL = 102; + int TRIPLEEQUAL = 103; + int ASSIGN = 104; + int PLUSASSIGN = 105; + int MINUSASSIGN = 106; + int STARASSIGN = 107; + int SLASHASSIGN = 108; + int ANDASSIGN = 109; + int ORASSIGN = 110; + int XORASSIGN = 111; + int DOTASSIGN = 112; + int REMASSIGN = 113; + int TILDEEQUAL = 114; + int AT = 115; + int DOLLAR = 116; + int BANG = 117; + int HOOK = 118; + int COLON = 119; + int SC_OR = 120; + int SC_AND = 121; + int INCR = 122; + int DECR = 123; + int PLUS = 124; + int MINUS = 125; + int STAR = 126; + int SLASH = 127; + int BIT_AND = 128; + int BIT_OR = 129; + int XOR = 130; + int REM = 131; + int LSHIFT = 132; + int RSIGNEDSHIFT = 133; + int RUNSIGNEDSHIFT = 134; + int LSHIFTASSIGN = 135; + int RSIGNEDSHIFTASSIGN = 136; + int DOLLAR_ID = 137; int DEFAULT = 0; int PHPPARSING = 1; @@ -176,6 +177,7 @@ public interface PHPParserConstants { "\"->\"", "\"::\"", "\"=>\"", + "\"list\"", "\"case\"", "\"const\"", "\"continue\"",