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 ab69d54..eeb62cf 100644 --- a/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java +++ b/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java @@ -4,124 +4,133 @@ package test; public interface PHPParserConstants { int EOF = 0; - int PHPSTART = 1; - int PHPEND = 2; - int SINGLE_LINE_COMMENT = 12; - int FORMAL_COMMENT = 13; - int MULTI_LINE_COMMENT = 14; - int CLASS = 16; - int FUNCTION = 17; - int VAR = 18; - int IF = 19; - int ELSEIF = 20; - int ELSE = 21; - int ARRAY = 22; - int PRINT = 23; - int ECHO = 24; - int INCLUDE = 25; - int REQUIRE = 26; - int INCLUDE_ONCE = 27; - int REQUIRE_ONCE = 28; - int GLOBAL = 29; - int STATIC = 30; - int CLASSACCESS = 31; - int STATICCLASSACCESS = 32; - int ARRAYASSIGN = 33; - int BREAK = 34; - int CASE = 35; - int CONST = 36; - int CONTINUE = 37; - int _DEFAULT = 38; - int DO = 39; - int EXTENDS = 40; - int FALSE = 41; - int FOR = 42; - int GOTO = 43; - int NEW = 44; - int NULL = 45; - int RETURN = 46; - int SUPER = 47; - int SWITCH = 48; - int THIS = 49; - int TRUE = 50; - int WHILE = 51; - int ENDWHILE = 52; - int STRING = 53; - int OBJECT = 54; - int BOOL = 55; - int BOOLEAN = 56; - int REAL = 57; - int DOUBLE = 58; - int FLOAT = 59; - int INT = 60; - int INTEGER = 61; - int _ORL = 62; - int _ANDL = 63; - int INTEGER_LITERAL = 64; - int DECIMAL_LITERAL = 65; - int HEX_LITERAL = 66; - int OCTAL_LITERAL = 67; - int FLOATING_POINT_LITERAL = 68; - int EXPONENT = 69; - int STRING_LITERAL = 70; - int STRING_1 = 71; - int STRING_2 = 72; - int STRING_3 = 73; - int IDENTIFIER = 74; - int LETTER = 75; - int DIGIT = 76; - int SPECIAL = 77; - int LPAREN = 78; - int RPAREN = 79; - int LBRACE = 80; - int RBRACE = 81; - int LBRACKET = 82; - int RBRACKET = 83; - int SEMICOLON = 84; - int COMMA = 85; - int DOT = 86; - int AT = 87; - int DOLLAR = 88; - int ASSIGN = 89; - int GT = 90; - int LT = 91; - int BANG = 92; - int HOOK = 93; - int COLON = 94; - int EQ = 95; - int LE = 96; - int GE = 97; - int NE = 98; - int SC_OR = 99; - int SC_AND = 100; - int INCR = 101; - int DECR = 102; - int PLUS = 103; - int MINUS = 104; - int STAR = 105; - int SLASH = 106; - int BIT_AND = 107; - int BIT_OR = 108; - int XOR = 109; - int REM = 110; - int LSHIFT = 111; - int RSIGNEDSHIFT = 112; - int RUNSIGNEDSHIFT = 113; - int PLUSASSIGN = 114; - int MINUSASSIGN = 115; - int STARASSIGN = 116; - int SLASHASSIGN = 117; - int ANDASSIGN = 118; - int ORASSIGN = 119; - int XORASSIGN = 120; - int DOTASSIGN = 121; - int REMASSIGN = 122; - int LSHIFTASSIGN = 123; - int RSIGNEDSHIFTASSIGN = 124; - int BANGDOUBLEEQUAL = 125; - int TRIPLEEQUAL = 126; - int TILDEEQUAL = 127; - int DOLLAR_ID = 128; + int PHPSTARTSHORT = 1; + int PHPSTARTLONG = 2; + int PHPECHOSTART = 3; + int PHPEND = 4; + int SINGLE_LINE_COMMENT = 15; + int SINGLE_LINE_COMMENT_PHPEND = 16; + int FORMAL_COMMENT = 17; + int MULTI_LINE_COMMENT = 18; + int CLASS = 20; + int FUNCTION = 21; + int VAR = 22; + int IF = 23; + int ELSEIF = 24; + int ELSE = 25; + int ARRAY = 26; + int BREAK = 27; + int PRINT = 28; + int ECHO = 29; + int INCLUDE = 30; + int REQUIRE = 31; + int INCLUDE_ONCE = 32; + int REQUIRE_ONCE = 33; + int GLOBAL = 34; + int STATIC = 35; + int CLASSACCESS = 36; + int STATICCLASSACCESS = 37; + int ARRAYASSIGN = 38; + int LIST = 39; + int CASE = 40; + int CONST = 41; + int CONTINUE = 42; + int _DEFAULT = 43; + int DO = 44; + int EXTENDS = 45; + int FOR = 46; + int GOTO = 47; + int NEW = 48; + int NULL = 49; + int RETURN = 50; + int SUPER = 51; + int SWITCH = 52; + int THIS = 53; + int TRUE = 54; + int FALSE = 55; + int WHILE = 56; + int ENDWHILE = 57; + int ENDIF = 58; + int ENDFOR = 59; + int FOREACH = 60; + int AS = 61; + int STRING = 62; + int OBJECT = 63; + int BOOL = 64; + int BOOLEAN = 65; + int REAL = 66; + int DOUBLE = 67; + int FLOAT = 68; + int INT = 69; + int INTEGER = 70; + int _ORL = 71; + int _ANDL = 72; + int INTEGER_LITERAL = 73; + int DECIMAL_LITERAL = 74; + int HEX_LITERAL = 75; + int OCTAL_LITERAL = 76; + int FLOATING_POINT_LITERAL = 77; + int EXPONENT = 78; + int STRING_LITERAL = 79; + int STRING_1 = 80; + int STRING_2 = 81; + int STRING_3 = 82; + int IDENTIFIER = 83; + int LETTER = 84; + int DIGIT = 85; + int SPECIAL = 86; + int LPAREN = 87; + int RPAREN = 88; + int LBRACE = 89; + int RBRACE = 90; + int LBRACKET = 91; + int RBRACKET = 92; + int SEMICOLON = 93; + int COMMA = 94; + int DOT = 95; + int GT = 96; + int LT = 97; + int EQ = 98; + int LE = 99; + int GE = 100; + int NE = 101; + int DIF = 102; + int BANGDOUBLEEQUAL = 103; + int TRIPLEEQUAL = 104; + int ASSIGN = 105; + int PLUSASSIGN = 106; + int MINUSASSIGN = 107; + int STARASSIGN = 108; + int SLASHASSIGN = 109; + int ANDASSIGN = 110; + int ORASSIGN = 111; + int XORASSIGN = 112; + int DOTASSIGN = 113; + int REMASSIGN = 114; + int TILDEEQUAL = 115; + int AT = 116; + int DOLLAR = 117; + int BANG = 118; + int HOOK = 119; + int COLON = 120; + int SC_OR = 121; + int SC_AND = 122; + int INCR = 123; + int DECR = 124; + int PLUS = 125; + int MINUS = 126; + int STAR = 127; + int SLASH = 128; + int BIT_AND = 129; + int BIT_OR = 130; + int XOR = 131; + int REM = 132; + int LSHIFT = 133; + int RSIGNEDSHIFT = 134; + int RUNSIGNEDSHIFT = 135; + int LSHIFTASSIGN = 136; + int RSIGNEDSHIFTASSIGN = 137; + int DOLLAR_ID = 138; int DEFAULT = 0; int PHPPARSING = 1; @@ -131,21 +140,25 @@ public interface PHPParserConstants { String[] tokenImage = { "", - "", + "\"\"", - "", + "", "\" \"", "\"\\t\"", "\"\\n\"", "\"\\r\"", "\"\\f\"", "\"//\"", - "", + "\"#\"", + "", "\"/*\"", "", + "\"?>\"", "\"*/\"", "\"*/\"", - "", + "", "\"class\"", "\"function\"", "\"var\"", @@ -153,6 +166,7 @@ public interface PHPParserConstants { "\"elseif\"", "\"else\"", "\"array\"", + "\"break\"", "\"print\"", "\"echo\"", "\"include\"", @@ -164,14 +178,13 @@ public interface PHPParserConstants { "\"->\"", "\"::\"", "\"=>\"", - "\"break\"", + "\"list\"", "\"case\"", "\"const\"", "\"continue\"", "\"default\"", "\"do\"", "\"extends\"", - "\"false\"", "\"for\"", "\"goto\"", "\"new\"", @@ -181,8 +194,13 @@ public interface PHPParserConstants { "\"switch\"", "\"this\"", "\"true\"", + "\"false\"", "\"while\"", "\"endwhile\"", + "\"endif\"", + "\"endfor\"", + "\"foreach\"", + "\"as\"", "\"string\"", "\"object\"", "\"bool\"", @@ -217,18 +235,31 @@ public interface PHPParserConstants { "\";\"", "\",\"", "\".\"", - "\"@\"", - "\"$\"", - "\"=\"", "\">\"", "\"<\"", - "\"!\"", - "\"?\"", - "\":\"", "\"==\"", "\"<=\"", "\">=\"", "\"!=\"", + "\"<>\"", + "\"!==\"", + "\"===\"", + "\"=\"", + "\"+=\"", + "\"-=\"", + "\"*=\"", + "\"/=\"", + "\"&=\"", + "\"|=\"", + "\"^=\"", + "\".=\"", + "\"%=\"", + "\"~=\"", + "\"@\"", + "\"$\"", + "\"!\"", + "\"?\"", + "\":\"", "\"||\"", "\"&&\"", "\"++\"", @@ -244,20 +275,8 @@ public interface PHPParserConstants { "\"<<\"", "\">>\"", "\">>>\"", - "\"+=\"", - "\"-=\"", - "\"*=\"", - "\"/=\"", - "\"&=\"", - "\"|=\"", - "\"^=\"", - "\".=\"", - "\"%=\"", "\"<<=\"", "\">>=\"", - "\"!==\"", - "\"===\"", - "\"~=\"", "", "\"?>\"", };