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 1d8793c..8248034 100644 --- a/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java +++ b/net.sourceforge.phpeclipse/src/test/PHPParserConstants.java @@ -47,84 +47,87 @@ public interface PHPParserConstants { int TRUE = 51; int WHILE = 52; int ENDWHILE = 53; - int FOREACH = 54; - int AS = 55; - int STRING = 56; - int OBJECT = 57; - int BOOL = 58; - int BOOLEAN = 59; - int REAL = 60; - int DOUBLE = 61; - int FLOAT = 62; - int INT = 63; - int INTEGER = 64; - int _ORL = 65; - int _ANDL = 66; - int INTEGER_LITERAL = 67; - int DECIMAL_LITERAL = 68; - int HEX_LITERAL = 69; - int OCTAL_LITERAL = 70; - int FLOATING_POINT_LITERAL = 71; - int EXPONENT = 72; - int STRING_LITERAL = 73; - int STRING_1 = 74; - int STRING_2 = 75; - int STRING_3 = 76; - int IDENTIFIER = 77; - int LETTER = 78; - int DIGIT = 79; - int SPECIAL = 80; - int LPAREN = 81; - int RPAREN = 82; - int LBRACE = 83; - int RBRACE = 84; - int LBRACKET = 85; - int RBRACKET = 86; - int SEMICOLON = 87; - int COMMA = 88; - int DOT = 89; - int AT = 90; - int DOLLAR = 91; - int ASSIGN = 92; - int GT = 93; - int LT = 94; - int BANG = 95; - int HOOK = 96; - int COLON = 97; - int EQ = 98; - int LE = 99; - int GE = 100; - int NE = 101; - int SC_OR = 102; - int SC_AND = 103; - int INCR = 104; - int DECR = 105; - int PLUS = 106; - int MINUS = 107; - int STAR = 108; - int SLASH = 109; - int BIT_AND = 110; - int BIT_OR = 111; - int XOR = 112; - int REM = 113; - int LSHIFT = 114; - int RSIGNEDSHIFT = 115; - int RUNSIGNEDSHIFT = 116; - int PLUSASSIGN = 117; - int MINUSASSIGN = 118; - int STARASSIGN = 119; - int SLASHASSIGN = 120; - int ANDASSIGN = 121; - int ORASSIGN = 122; - int XORASSIGN = 123; - int DOTASSIGN = 124; - int REMASSIGN = 125; - int LSHIFTASSIGN = 126; - int RSIGNEDSHIFTASSIGN = 127; - int BANGDOUBLEEQUAL = 128; - int TRIPLEEQUAL = 129; - int TILDEEQUAL = 130; - int DOLLAR_ID = 131; + int ENDIF = 54; + int ENDFOR = 55; + int FOREACH = 56; + int AS = 57; + int STRING = 58; + int OBJECT = 59; + int BOOL = 60; + int BOOLEAN = 61; + int REAL = 62; + int DOUBLE = 63; + int FLOAT = 64; + int INT = 65; + int INTEGER = 66; + int _ORL = 67; + int _ANDL = 68; + int INTEGER_LITERAL = 69; + int DECIMAL_LITERAL = 70; + int HEX_LITERAL = 71; + int OCTAL_LITERAL = 72; + int FLOATING_POINT_LITERAL = 73; + int EXPONENT = 74; + int STRING_LITERAL = 75; + int STRING_1 = 76; + int STRING_2 = 77; + int STRING_3 = 78; + int IDENTIFIER = 79; + int LETTER = 80; + int DIGIT = 81; + int SPECIAL = 82; + int LPAREN = 83; + int RPAREN = 84; + int LBRACE = 85; + int RBRACE = 86; + int LBRACKET = 87; + int RBRACKET = 88; + int SEMICOLON = 89; + int COMMA = 90; + int DOT = 91; + int AT = 92; + int DOLLAR = 93; + int ASSIGN = 94; + int GT = 95; + int LT = 96; + int BANG = 97; + int HOOK = 98; + int COLON = 99; + int EQ = 100; + int LE = 101; + int GE = 102; + int NE = 103; + int DIF = 104; + int SC_OR = 105; + int SC_AND = 106; + int INCR = 107; + int DECR = 108; + int PLUS = 109; + int MINUS = 110; + int STAR = 111; + int SLASH = 112; + int BIT_AND = 113; + int BIT_OR = 114; + int XOR = 115; + int REM = 116; + int LSHIFT = 117; + int RSIGNEDSHIFT = 118; + int RUNSIGNEDSHIFT = 119; + int PLUSASSIGN = 120; + int MINUSASSIGN = 121; + int STARASSIGN = 122; + int SLASHASSIGN = 123; + int ANDASSIGN = 124; + int ORASSIGN = 125; + int XORASSIGN = 126; + int DOTASSIGN = 127; + int REMASSIGN = 128; + int LSHIFTASSIGN = 129; + int RSIGNEDSHIFTASSIGN = 130; + int BANGDOUBLEEQUAL = 131; + int TRIPLEEQUAL = 132; + int TILDEEQUAL = 133; + int DOLLAR_ID = 134; int DEFAULT = 0; int PHPPARSING = 1; @@ -187,6 +190,8 @@ public interface PHPParserConstants { "\"true\"", "\"while\"", "\"endwhile\"", + "\"endif\"", + "\"endfor\"", "\"foreach\"", "\"as\"", "\"string\"", @@ -235,6 +240,7 @@ public interface PHPParserConstants { "\"<=\"", "\">=\"", "\"!=\"", + "\"<>\"", "\"||\"", "\"&&\"", "\"++\"",