mirror of
https://github.com/php/php-src.git
synced 2025-08-16 22:18:50 +02:00
- 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:
parent
1e6c12c919
commit
dc7cb19993
2 changed files with 0 additions and 21 deletions
|
@ -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; }
|
||||
;
|
||||
|
||||
|
||||
|
|
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue