X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPKeywords.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPKeywords.java index ce19628..3df4172 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPKeywords.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPKeywords.java @@ -51,13 +51,16 @@ 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 +99,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,7 +145,8 @@ public class PHPKeywords { // TT_empty, // TT_array, // TT_isset, - TT_echo, TT_var, TT_as, TT_print, TT_unset, + 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 };