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 00c5d6a..33e3a98 100644 --- a/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java +++ b/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java @@ -9,130 +9,128 @@ public interface PHPParserConstants { 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 LIST = 28; - int PRINT = 29; - int ECHO = 30; - int INCLUDE = 31; - int REQUIRE = 32; - int INCLUDE_ONCE = 33; - int REQUIRE_ONCE = 34; - int GLOBAL = 35; - int STATIC = 36; - int CLASSACCESS = 37; - int STATICCLASSACCESS = 38; - int ARRAYASSIGN = 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 ENDSWITCH = 58; - int ENDIF = 59; - int ENDFOR = 60; - int FOREACH = 61; - int AS = 62; - int STRING = 63; - int OBJECT = 64; - int BOOL = 65; - int BOOLEAN = 66; - int REAL = 67; - int DOUBLE = 68; - int FLOAT = 69; - int INT = 70; - int INTEGER = 71; - int AT = 72; - int DOLLAR = 73; - int BANG = 74; - int TILDE = 75; - int HOOK = 76; - int COLON = 77; - int OR_OR = 78; - int AND_AND = 79; - int INCR = 80; - int DECR = 81; - int PLUS = 82; - int MINUS = 83; - int STAR = 84; - int SLASH = 85; - int BIT_AND = 86; - int BIT_OR = 87; - int XOR = 88; - int REMAINDER = 89; - int LSHIFT = 90; - int RSIGNEDSHIFT = 91; - int RUNSIGNEDSHIFT = 92; - int _ORL = 93; - int _ANDL = 94; - int INTEGER_LITERAL = 95; - int DECIMAL_LITERAL = 96; - int HEX_LITERAL = 97; - int OCTAL_LITERAL = 98; - int FLOATING_POINT_LITERAL = 99; - int EXPONENT = 100; - int STRING_LITERAL = 101; - int STRING_1 = 102; - int STRING_2 = 103; - int STRING_3 = 104; - int IDENTIFIER = 105; - int LETTER = 106; - int DIGIT = 107; - int SPECIAL = 108; - int LPAREN = 109; - int RPAREN = 110; - int LBRACE = 111; - int RBRACE = 112; - int LBRACKET = 113; - int RBRACKET = 114; - int SEMICOLON = 115; - int COMMA = 116; - int DOT = 117; - int GT = 118; - int LT = 119; - int EQUAL_EQUAL = 120; - int LE = 121; - int GE = 122; - int NOT_EQUAL = 123; - int DIF = 124; - int BANGDOUBLEEQUAL = 125; - int TRIPLEEQUAL = 126; - int ASSIGN = 127; - int PLUSASSIGN = 128; - int MINUSASSIGN = 129; - int STARASSIGN = 130; - int SLASHASSIGN = 131; - int ANDASSIGN = 132; - int ORASSIGN = 133; - int XORASSIGN = 134; - int DOTASSIGN = 135; - int REMASSIGN = 136; - int TILDEEQUAL = 137; - int LSHIFTASSIGN = 138; - int RSIGNEDSHIFTASSIGN = 139; - int DOLLAR_ID = 140; + int CLASS = 21; + int FUNCTION = 22; + int VAR = 23; + int IF = 24; + int ELSEIF = 25; + int ELSE = 26; + int ARRAY = 27; + int BREAK = 28; + int LIST = 29; + int PRINT = 30; + int ECHO = 31; + int INCLUDE = 32; + int REQUIRE = 33; + int INCLUDE_ONCE = 34; + int REQUIRE_ONCE = 35; + int GLOBAL = 36; + 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; @@ -157,10 +155,11 @@ public interface PHPParserConstants { "", "\"/*\"", "", - "\"?>\"", + "", + "\"todo\"", "\"*/\"", "\"*/\"", - "", + "", "\"class\"", "\"function\"", "\"var\"", @@ -177,6 +176,7 @@ public interface PHPParserConstants { "\"include_once\"", "\"require_once\"", "\"global\"", + "\"define\"", "\"static\"", "\"->\"", "\"::\"",