- Remove all for now

# - the optimization part can be done in apc or compareable products
# - NULL can be reintroduced later when needed
This commit is contained in:
Marcus Boerger 2004-08-02 16:38:09 +00:00
parent 1e6c12c919
commit dc7cb19993
2 changed files with 0 additions and 21 deletions

View file

@ -142,9 +142,6 @@
%token T_DOLLAR_OPEN_CURLY_BRACES
%token T_CURLY_OPEN
%token T_PAAMAYIM_NEKUDOTAYIM
%token T_NULL
%token T_FALSE
%token T_TRUE
%% /* Rules */
@ -678,9 +675,6 @@ common_scalar:
| T_CLASS_C { $$ = $1; }
| T_METHOD_C { $$ = $1; }
| T_FUNC_C { $$ = $1; }
| T_NULL { $$ = $1; }
| T_FALSE { $$ = $1; }
| T_TRUE { $$ = $1; }
;

View file

@ -1304,21 +1304,6 @@ NEWLINE ("\r"|"\n"|"\r\n")
return T_FILE;
}
<ST_IN_SCRIPTING>"NULL" {
ZVAL_NULL(zendlval);
return T_NULL;
}
<ST_IN_SCRIPTING>"FALSE" {
ZVAL_FALSE(zendlval);
return T_FALSE;
}
<ST_IN_SCRIPTING>"TRUE" {
ZVAL_TRUE(zendlval);
return T_TRUE;
}
<INITIAL>(([^<]|"<"[^?%s<]){1,400})|"<s"|"<" {
#ifdef ZEND_MULTIBYTE
if (SCNG(output_filter)) {