X-Git-Url: http://secure.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 8e6409b..ce19628 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,7 +51,9 @@ public class PHPKeywords { // "empty", // "array", // "isset", - "echo", "var", "as", "print", "unset", "exit", "die", "and", "or", "xor", "list", + "echo", "var", "as", "print", "unset", + // "exit", "die", + "and", "or", "xor", "list", "null", "false", "true" }; public final static String[] PHP_TYPES = @@ -95,8 +97,8 @@ public class PHPKeywords { 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_exit = 1038; - public final static int TT_die = 1039; + // public final static int TT_exit = 1038; + // public final static int TT_die = 1039; public final static int TT_and = 1040; public final static int TT_or = 1041; public final static int TT_xor = 1042; @@ -140,6 +142,8 @@ public class PHPKeywords { // TT_empty, // TT_array, // TT_isset, - TT_echo, TT_var, TT_as, TT_print, TT_unset, TT_exit, TT_die, TT_and, TT_or, TT_xor, TT_list, + 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 }; }