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