TokenMgrError handled (no more exception on unterminated String), I now accept all...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / test / PHPParserConstants.java
index d427051..ab69d54 100644 (file)
@@ -118,8 +118,10 @@ public interface PHPParserConstants {
   int REMASSIGN = 122;
   int LSHIFTASSIGN = 123;
   int RSIGNEDSHIFTASSIGN = 124;
-  int RUNSIGNEDSHIFTASSIGN = 125;
-  int DOLLAR_ID = 126;
+  int BANGDOUBLEEQUAL = 125;
+  int TRIPLEEQUAL = 126;
+  int TILDEEQUAL = 127;
+  int DOLLAR_ID = 128;
 
   int DEFAULT = 0;
   int PHPPARSING = 1;
@@ -205,7 +207,7 @@ public interface PHPParserConstants {
     "<IDENTIFIER>",
     "<LETTER>",
     "<DIGIT>",
-    "\"_\"",
+    "<SPECIAL>",
     "\"(\"",
     "\")\"",
     "\"{\"",
@@ -253,7 +255,9 @@ public interface PHPParserConstants {
     "\"%=\"",
     "\"<<=\"",
     "\">>=\"",
-    "\">>>=\"",
+    "\"!==\"",
+    "\"===\"",
+    "\"~=\"",
     "<DOLLAR_ID>",
     "\"?>\"",
   };