Syntax Highlighting Prefs work now / Automatic parse on save option available
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / PHPKeywords.java
index ce19628..bb6bd07 100644 (file)
@@ -51,13 +51,17 @@ public class PHPKeywords {
     //  "empty",
     //  "array",
     //   "isset",
-    "echo", "var", "as", "print", "unset", 
+    "echo", "var", "as", 
+    "print", 
+    // "unset", 
     // "exit", "die", 
     "and", "or", "xor", "list", 
     "null", "false", "true" };
 
   public final static String[] PHP_TYPES =
-    { "string", "unset", "array", "object", "bool", "boolean", "real", "double", "float", "int", "integer", };
+    { "string", "unset", 
+      //"array", 
+      "object", "bool", "boolean", "real", "double", "float", "int", "integer", };
 
   public final static int TT_KEYWORD = 1000;
   public final static int TT_if = 1001;
@@ -96,7 +100,7 @@ public class PHPKeywords {
   public final static int TT_var = 1034;
   public final static int TT_as = 1035;
   public final static int TT_print = 1036;
-  public final static int TT_unset = 1037;
+ // public final static int TT_unset = 1037;
  //  public final static int TT_exit = 1038;
  // public final static int TT_die = 1039;
   public final static int TT_and = 1040;
@@ -142,8 +146,10 @@ public class PHPKeywords {
     // TT_empty,
     //  TT_array,
     //   TT_isset,
-    TT_echo, TT_var, TT_as, TT_print, TT_unset, 
-    //TT_exit, TT_die, 
+    TT_echo, TT_var, TT_as, 
+    TT_print, 
+    // TT_unset, 
+    // TT_exit, TT_die, 
     TT_and, TT_or, TT_xor, TT_list, 
     TT_null, TT_false, TT_true };
 }