1999-04-08 02:10:10 +08:00
|
|
|
%{
|
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2014-01-03 11:08:10 +08:00
|
|
|
| Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2006-05-12 05:07:39 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58:16 +08:00
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2003-02-01 09:49:15 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
2006-05-12 05:07:39 +08:00
|
|
|
/*
|
1999-04-08 02:10:10 +08:00
|
|
|
* LALR shift/reduce conflicts and how they are resolved:
|
|
|
|
*
|
2008-07-26 23:30:28 +08:00
|
|
|
* - 2 shift/reduce conflicts due to the dangling elseif/else ambiguity. Solved by shift.
|
2006-05-12 05:07:39 +08:00
|
|
|
*
|
1999-04-08 02:10:10 +08:00
|
|
|
*/
|
|
|
|
|
1999-12-06 23:31:06 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#include "zend_compile.h"
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_list.h"
|
|
|
|
#include "zend_globals.h"
|
|
|
|
#include "zend_API.h"
|
2005-06-05 00:16:19 +08:00
|
|
|
#include "zend_constants.h"
|
|
|
|
|
2011-06-24 07:00:53 +08:00
|
|
|
#define YYSIZE_T size_t
|
|
|
|
#define yytnamerr zend_yytnamerr
|
|
|
|
static YYSIZE_T zend_yytnamerr(char*, const char*);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-12-07 14:19:42 +08:00
|
|
|
#define YYERROR_VERBOSE
|
|
|
|
#define YYSTYPE znode
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%pure_parser
|
2014-05-31 06:09:11 +08:00
|
|
|
%expect 2
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2013-03-25 23:48:21 +08:00
|
|
|
%code requires {
|
|
|
|
#ifdef ZTS
|
|
|
|
# define YYPARSE_PARAM tsrm_ls
|
|
|
|
# define YYLEX_PARAM tsrm_ls
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-06-24 07:00:53 +08:00
|
|
|
%token END 0 "end of file"
|
2000-08-10 03:22:35 +08:00
|
|
|
%left T_INCLUDE T_INCLUDE_ONCE T_EVAL T_REQUIRE T_REQUIRE_ONCE
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_INCLUDE "include (T_INCLUDE)"
|
|
|
|
%token T_INCLUDE_ONCE "include_once (T_INCLUDE_ONCE)"
|
|
|
|
%token T_EVAL "eval (T_EVAL)"
|
|
|
|
%token T_REQUIRE "require (T_REQUIRE)"
|
|
|
|
%token T_REQUIRE_ONCE "require_once (T_REQUIRE_ONCE)"
|
1999-04-08 02:10:10 +08:00
|
|
|
%left ','
|
1999-04-23 07:08:42 +08:00
|
|
|
%left T_LOGICAL_OR
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_LOGICAL_OR "or (T_LOGICAL_OR)"
|
1999-04-23 07:08:42 +08:00
|
|
|
%left T_LOGICAL_XOR
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_LOGICAL_XOR "xor (T_LOGICAL_XOR)"
|
1999-04-23 07:08:42 +08:00
|
|
|
%left T_LOGICAL_AND
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_LOGICAL_AND "and (T_LOGICAL_AND)"
|
1999-04-23 07:08:42 +08:00
|
|
|
%right T_PRINT
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_PRINT "print (T_PRINT)"
|
2012-05-29 23:34:33 +08:00
|
|
|
%right T_YIELD
|
|
|
|
%token T_YIELD "yield (T_YIELD)"
|
2013-11-19 15:36:06 +08:00
|
|
|
%left '=' T_PLUS_EQUAL T_MINUS_EQUAL T_MUL_EQUAL T_DIV_EQUAL T_CONCAT_EQUAL T_MOD_EQUAL T_AND_EQUAL T_OR_EQUAL T_XOR_EQUAL T_SL_EQUAL T_SR_EQUAL T_POW_EQUAL
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_PLUS_EQUAL "+= (T_PLUS_EQUAL)"
|
|
|
|
%token T_MINUS_EQUAL "-= (T_MINUS_EQUAL)"
|
|
|
|
%token T_MUL_EQUAL "*= (T_MUL_EQUAL)"
|
|
|
|
%token T_DIV_EQUAL "/= (T_DIV_EQUAL)"
|
|
|
|
%token T_CONCAT_EQUAL ".= (T_CONCAT_EQUAL)"
|
|
|
|
%token T_MOD_EQUAL "%= (T_MOD_EQUAL)"
|
|
|
|
%token T_AND_EQUAL "&= (T_AND_EQUAL)"
|
|
|
|
%token T_OR_EQUAL "|= (T_OR_EQUAL)"
|
|
|
|
%token T_XOR_EQUAL "^= (T_XOR_EQUAL)"
|
|
|
|
%token T_SL_EQUAL "<<= (T_SL_EQUAL)"
|
|
|
|
%token T_SR_EQUAL ">>= (T_SR_EQUAL)"
|
1999-04-08 02:10:10 +08:00
|
|
|
%left '?' ':'
|
1999-04-23 07:08:42 +08:00
|
|
|
%left T_BOOLEAN_OR
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_BOOLEAN_OR "|| (T_BOOLEAN_OR)"
|
|
|
|
%left T_BOOLEAN_AND
|
|
|
|
%token T_BOOLEAN_AND "&& (T_BOOLEAN_AND)"
|
1999-04-08 02:10:10 +08:00
|
|
|
%left '|'
|
|
|
|
%left '^'
|
|
|
|
%left '&'
|
2000-03-30 06:05:19 +08:00
|
|
|
%nonassoc T_IS_EQUAL T_IS_NOT_EQUAL T_IS_IDENTICAL T_IS_NOT_IDENTICAL
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_IS_EQUAL "== (T_IS_EQUAL)"
|
|
|
|
%token T_IS_NOT_EQUAL "!= (T_IS_NOT_EQUAL)"
|
|
|
|
%token T_IS_IDENTICAL "=== (T_IS_IDENTICAL)"
|
|
|
|
%token T_IS_NOT_IDENTICAL "!== (T_IS_NOT_IDENTICAL)"
|
1999-04-23 07:08:42 +08:00
|
|
|
%nonassoc '<' T_IS_SMALLER_OR_EQUAL '>' T_IS_GREATER_OR_EQUAL
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_IS_SMALLER_OR_EQUAL "<= (T_IS_SMALLER_OR_EQUAL)"
|
|
|
|
%token T_IS_GREATER_OR_EQUAL ">= (T_IS_GREATER_OR_EQUAL)"
|
1999-04-23 07:08:42 +08:00
|
|
|
%left T_SL T_SR
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_SL "<< (T_SL)"
|
|
|
|
%token T_SR ">> (T_SR)"
|
1999-04-08 02:10:10 +08:00
|
|
|
%left '+' '-' '.'
|
|
|
|
%left '*' '/' '%'
|
2004-02-24 02:17:16 +08:00
|
|
|
%right '!'
|
2004-02-23 16:40:39 +08:00
|
|
|
%nonassoc T_INSTANCEOF
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_INSTANCEOF "instanceof (T_INSTANCEOF)"
|
2011-06-03 09:09:32 +08:00
|
|
|
%right '~' T_INC T_DEC T_INT_CAST T_DOUBLE_CAST T_STRING_CAST T_ARRAY_CAST T_OBJECT_CAST T_BOOL_CAST T_UNSET_CAST '@'
|
2013-11-19 15:36:06 +08:00
|
|
|
%right T_POW
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_INC "++ (T_INC)"
|
|
|
|
%token T_DEC "-- (T_DEC)"
|
|
|
|
%token T_INT_CAST "(int) (T_INT_CAST)"
|
|
|
|
%token T_DOUBLE_CAST "(double) (T_DOUBLE_CAST)"
|
|
|
|
%token T_STRING_CAST "(string) (T_STRING_CAST)"
|
|
|
|
%token T_ARRAY_CAST "(array) (T_ARRAY_CAST)"
|
|
|
|
%token T_OBJECT_CAST "(object) (T_OBJECT_CAST)"
|
|
|
|
%token T_BOOL_CAST "(bool) (T_BOOL_CAST)"
|
|
|
|
%token T_UNSET_CAST "(unset) (T_UNSET_CAST)"
|
1999-04-08 02:10:10 +08:00
|
|
|
%right '['
|
2004-02-23 16:40:39 +08:00
|
|
|
%nonassoc T_NEW T_CLONE
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_NEW "new (T_NEW)"
|
|
|
|
%token T_CLONE "clone (T_CLONE)"
|
|
|
|
%token T_EXIT "exit (T_EXIT)"
|
|
|
|
%token T_IF "if (T_IF)"
|
1999-04-23 07:08:42 +08:00
|
|
|
%left T_ELSEIF
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_ELSEIF "elseif (T_ELSEIF)"
|
|
|
|
%left T_ELSE
|
|
|
|
%token T_ELSE "else (T_ELSE)"
|
|
|
|
%left T_ENDIF
|
|
|
|
%token T_ENDIF "endif (T_ENDIF)"
|
|
|
|
%token T_LNUMBER "integer number (T_LNUMBER)"
|
|
|
|
%token T_DNUMBER "floating-point number (T_DNUMBER)"
|
|
|
|
%token T_STRING "identifier (T_STRING)"
|
|
|
|
%token T_STRING_VARNAME "variable name (T_STRING_VARNAME)"
|
|
|
|
%token T_VARIABLE "variable (T_VARIABLE)"
|
|
|
|
%token T_NUM_STRING "number (T_NUM_STRING)"
|
1999-04-23 07:08:42 +08:00
|
|
|
%token T_INLINE_HTML
|
|
|
|
%token T_CHARACTER
|
|
|
|
%token T_BAD_CHARACTER
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_ENCAPSED_AND_WHITESPACE "quoted-string and whitespace (T_ENCAPSED_AND_WHITESPACE)"
|
|
|
|
%token T_CONSTANT_ENCAPSED_STRING "quoted-string (T_CONSTANT_ENCAPSED_STRING)"
|
|
|
|
%token T_ECHO "echo (T_ECHO)"
|
|
|
|
%token T_DO "do (T_DO)"
|
|
|
|
%token T_WHILE "while (T_WHILE)"
|
|
|
|
%token T_ENDWHILE "endwhile (T_ENDWHILE)"
|
|
|
|
%token T_FOR "for (T_FOR)"
|
|
|
|
%token T_ENDFOR "endfor (T_ENDFOR)"
|
|
|
|
%token T_FOREACH "foreach (T_FOREACH)"
|
|
|
|
%token T_ENDFOREACH "endforeach (T_ENDFOREACH)"
|
|
|
|
%token T_DECLARE "declare (T_DECLARE)"
|
|
|
|
%token T_ENDDECLARE "enddeclare (T_ENDDECLARE)"
|
|
|
|
%token T_AS "as (T_AS)"
|
|
|
|
%token T_SWITCH "switch (T_SWITCH)"
|
|
|
|
%token T_ENDSWITCH "endswitch (T_ENDSWITCH)"
|
|
|
|
%token T_CASE "case (T_CASE)"
|
|
|
|
%token T_DEFAULT "default (T_DEFAULT)"
|
|
|
|
%token T_BREAK "break (T_BREAK)"
|
|
|
|
%token T_CONTINUE "continue (T_CONTINUE)"
|
|
|
|
%token T_GOTO "goto (T_GOTO)"
|
|
|
|
%token T_FUNCTION "function (T_FUNCTION)"
|
|
|
|
%token T_CONST "const (T_CONST)"
|
|
|
|
%token T_RETURN "return (T_RETURN)"
|
|
|
|
%token T_TRY "try (T_TRY)"
|
|
|
|
%token T_CATCH "catch (T_CATCH)"
|
2012-08-13 21:48:39 +08:00
|
|
|
%token T_FINALLY "finally (T_FINALLY)"
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_THROW "throw (T_THROW)"
|
|
|
|
%token T_USE "use (T_USE)"
|
|
|
|
%token T_INSTEADOF "insteadof (T_INSTEADOF)"
|
|
|
|
%token T_GLOBAL "global (T_GLOBAL)"
|
2003-02-24 20:05:58 +08:00
|
|
|
%right T_STATIC T_ABSTRACT T_FINAL T_PRIVATE T_PROTECTED T_PUBLIC
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_STATIC "static (T_STATIC)"
|
|
|
|
%token T_ABSTRACT "abstract (T_ABSTRACT)"
|
|
|
|
%token T_FINAL "final (T_FINAL)"
|
|
|
|
%token T_PRIVATE "private (T_PRIVATE)"
|
|
|
|
%token T_PROTECTED "protected (T_PROTECTED)"
|
|
|
|
%token T_PUBLIC "public (T_PUBLIC)"
|
|
|
|
%token T_VAR "var (T_VAR)"
|
|
|
|
%token T_UNSET "unset (T_UNSET)"
|
|
|
|
%token T_ISSET "isset (T_ISSET)"
|
|
|
|
%token T_EMPTY "empty (T_EMPTY)"
|
|
|
|
%token T_HALT_COMPILER "__halt_compiler (T_HALT_COMPILER)"
|
|
|
|
%token T_CLASS "class (T_CLASS)"
|
|
|
|
%token T_TRAIT "trait (T_TRAIT)"
|
|
|
|
%token T_INTERFACE "interface (T_INTERFACE)"
|
|
|
|
%token T_EXTENDS "extends (T_EXTENDS)"
|
|
|
|
%token T_IMPLEMENTS "implements (T_IMPLEMENTS)"
|
|
|
|
%token T_OBJECT_OPERATOR "-> (T_OBJECT_OPERATOR)"
|
2014-06-19 04:32:08 +08:00
|
|
|
%right T_DOUBLE_ARROW
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_DOUBLE_ARROW "=> (T_DOUBLE_ARROW)"
|
|
|
|
%token T_LIST "list (T_LIST)"
|
|
|
|
%token T_ARRAY "array (T_ARRAY)"
|
2011-08-16 18:44:47 +08:00
|
|
|
%token T_CALLABLE "callable (T_CALLABLE)"
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_CLASS_C "__CLASS__ (T_CLASS_C)"
|
2011-08-01 01:39:30 +08:00
|
|
|
%token T_TRAIT_C "__TRAIT__ (T_TRAIT_C)"
|
2011-06-24 07:00:53 +08:00
|
|
|
%token T_METHOD_C "__METHOD__ (T_METHOD_C)"
|
|
|
|
%token T_FUNC_C "__FUNCTION__ (T_FUNC_C)"
|
|
|
|
%token T_LINE "__LINE__ (T_LINE)"
|
|
|
|
%token T_FILE "__FILE__ (T_FILE)"
|
|
|
|
%token T_COMMENT "comment (T_COMMENT)"
|
|
|
|
%token T_DOC_COMMENT "doc comment (T_DOC_COMMENT)"
|
|
|
|
%token T_OPEN_TAG "open tag (T_OPEN_TAG)"
|
|
|
|
%token T_OPEN_TAG_WITH_ECHO "open tag with echo (T_OPEN_TAG_WITH_ECHO)"
|
|
|
|
%token T_CLOSE_TAG "close tag (T_CLOSE_TAG)"
|
|
|
|
%token T_WHITESPACE "whitespace (T_WHITESPACE)"
|
|
|
|
%token T_START_HEREDOC "heredoc start (T_START_HEREDOC)"
|
|
|
|
%token T_END_HEREDOC "heredoc end (T_END_HEREDOC)"
|
|
|
|
%token T_DOLLAR_OPEN_CURLY_BRACES "${ (T_DOLLAR_OPEN_CURLY_BRACES)"
|
|
|
|
%token T_CURLY_OPEN "{$ (T_CURLY_OPEN)"
|
|
|
|
%token T_PAAMAYIM_NEKUDOTAYIM ":: (T_PAAMAYIM_NEKUDOTAYIM)"
|
|
|
|
%token T_NAMESPACE "namespace (T_NAMESPACE)"
|
|
|
|
%token T_NS_C "__NAMESPACE__ (T_NS_C)"
|
|
|
|
%token T_DIR "__DIR__ (T_DIR)"
|
|
|
|
%token T_NS_SEPARATOR "\\ (T_NS_SEPARATOR)"
|
2013-09-27 00:39:17 +08:00
|
|
|
%token T_ELLIPSIS "... (T_ELLIPSIS)"
|
2013-11-19 15:36:06 +08:00
|
|
|
%token T_POW "** (T_POW)"
|
|
|
|
%token T_POW_EQUAL "**= (T_POW_EQUAL)"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
%% /* Rules */
|
|
|
|
|
2000-01-29 06:23:28 +08:00
|
|
|
start:
|
2014-07-25 02:51:01 +08:00
|
|
|
top_statement_list { CG(ast) = $1.u.ast; }
|
2000-01-29 06:23:28 +08:00
|
|
|
;
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
top_statement_list:
|
2014-07-22 19:02:51 +08:00
|
|
|
top_statement_list top_statement { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $2.u.ast); }
|
|
|
|
| /* empty */ { $$.u.ast = zend_ast_create_dynamic(ZEND_AST_STMT_LIST); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2007-09-29 03:52:53 +08:00
|
|
|
namespace_name:
|
2014-07-27 02:54:41 +08:00
|
|
|
T_STRING { zval zv; ZVAL_COPY_VALUE(&zv, zend_ast_get_zval($1.u.ast)); $1.op_type = IS_CONST; ZVAL_COPY_VALUE(&$1.u.constant, &zv); $$ = $1; }
|
|
|
|
| namespace_name T_NS_SEPARATOR T_STRING { zval zv; ZVAL_COPY_VALUE(&zv, zend_ast_get_zval($3.u.ast)); $3.op_type = IS_CONST; ZVAL_COPY_VALUE(&$3.u.constant, &zv); zend_do_build_namespace_name(&$$, &$1, &$3 TSRMLS_CC); }
|
2007-09-29 03:52:53 +08:00
|
|
|
;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-07-05 05:08:05 +08:00
|
|
|
name:
|
|
|
|
namespace_name
|
2014-07-22 19:25:47 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_zval_ex(&$1.u.constant, ZEND_NAME_NOT_FQ); }
|
2014-07-05 05:08:05 +08:00
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
2014-07-22 19:25:47 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_zval_ex(&$3.u.constant, ZEND_NAME_RELATIVE); }
|
2014-07-05 05:08:05 +08:00
|
|
|
| T_NS_SEPARATOR namespace_name
|
2014-07-22 19:25:47 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_zval_ex(&$2.u.constant, ZEND_NAME_FQ); }
|
2014-07-05 05:08:05 +08:00
|
|
|
;
|
|
|
|
|
1999-05-15 23:47:24 +08:00
|
|
|
top_statement:
|
2014-07-22 19:02:51 +08:00
|
|
|
statement { $$.u.ast = $1.u.ast; }
|
|
|
|
| function_declaration_statement { $$.u.ast = $1.u.ast; }
|
|
|
|
| class_declaration_statement { $$.u.ast = $1.u.ast; }
|
2014-07-22 20:22:59 +08:00
|
|
|
| T_HALT_COMPILER '(' ')' ';'
|
2014-07-27 01:01:14 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_HALT_COMPILER,
|
|
|
|
zend_ast_create_zval_from_long(zend_get_scanned_file_offset(TSRMLS_C)));
|
2014-07-22 21:50:23 +08:00
|
|
|
zend_stop_lexing(TSRMLS_C); }
|
2014-07-22 18:45:44 +08:00
|
|
|
| T_NAMESPACE namespace_name ';'
|
2014-07-22 19:52:35 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_NAMESPACE, AST_ZVAL(&$2), NULL);
|
|
|
|
zend_discard_doc_comment(TSRMLS_C); }
|
|
|
|
| T_NAMESPACE namespace_name { zend_discard_doc_comment(TSRMLS_C); }
|
|
|
|
'{' top_statement_list '}'
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_NAMESPACE, AST_ZVAL(&$2), $5.u.ast); }
|
|
|
|
| T_NAMESPACE { zend_discard_doc_comment(TSRMLS_C); }
|
|
|
|
'{' top_statement_list '}'
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_NAMESPACE, NULL, $4.u.ast); }
|
2014-07-22 05:41:11 +08:00
|
|
|
| T_USE use_declarations ';'
|
2014-07-22 19:02:51 +08:00
|
|
|
{ $$.u.ast = $2.u.ast; $$.u.ast->attr = T_CLASS; }
|
2014-07-22 05:41:11 +08:00
|
|
|
| T_USE T_FUNCTION use_declarations ';'
|
2014-07-22 19:02:51 +08:00
|
|
|
{ $$.u.ast = $3.u.ast; $$.u.ast->attr = T_FUNCTION; }
|
2014-07-22 05:41:11 +08:00
|
|
|
| T_USE T_CONST use_declarations ';'
|
2014-07-22 19:02:51 +08:00
|
|
|
{ $$.u.ast = $3.u.ast; $$.u.ast->attr = T_CONST; }
|
|
|
|
| T_CONST const_list ';' { $$.u.ast = $2.u.ast; }
|
1999-05-15 23:47:24 +08:00
|
|
|
;
|
|
|
|
|
2008-06-08 17:38:47 +08:00
|
|
|
use_declarations:
|
|
|
|
use_declarations ',' use_declaration
|
2014-07-22 04:49:31 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
2008-06-08 17:38:47 +08:00
|
|
|
| use_declaration
|
2014-07-22 04:49:31 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_USE, $1.u.ast); }
|
2008-08-12 18:23:02 +08:00
|
|
|
;
|
2008-06-08 17:38:47 +08:00
|
|
|
|
|
|
|
use_declaration:
|
2014-07-22 04:49:31 +08:00
|
|
|
namespace_name
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_USE_ELEM, AST_ZVAL(&$1), NULL); }
|
|
|
|
| namespace_name T_AS T_STRING
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_USE_ELEM, AST_ZVAL(&$1), $3.u.ast); }
|
2014-07-22 04:49:31 +08:00
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_USE_ELEM, AST_ZVAL(&$2), NULL); }
|
|
|
|
| T_NS_SEPARATOR namespace_name T_AS T_STRING
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_USE_ELEM, AST_ZVAL(&$2), $4.u.ast); }
|
2008-08-12 18:23:02 +08:00
|
|
|
;
|
2008-06-08 17:38:47 +08:00
|
|
|
|
2014-07-22 17:55:07 +08:00
|
|
|
const_list:
|
|
|
|
const_list ',' const_decl { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
|
|
|
| const_decl
|
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_CONST_DECL, $1.u.ast); }
|
2007-09-29 03:52:53 +08:00
|
|
|
;
|
1999-05-15 23:47:24 +08:00
|
|
|
|
|
|
|
inner_statement_list:
|
2014-07-11 05:04:42 +08:00
|
|
|
inner_statement_list inner_statement
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $2.u.ast); }
|
1999-05-15 23:47:24 +08:00
|
|
|
| /* empty */
|
2014-07-11 05:04:42 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_dynamic(ZEND_AST_STMT_LIST); }
|
1999-05-15 23:47:24 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
inner_statement:
|
2014-07-11 05:04:42 +08:00
|
|
|
statement { $$.u.ast = $1.u.ast; }
|
2014-07-16 06:06:41 +08:00
|
|
|
| function_declaration_statement { $$.u.ast = $1.u.ast; }
|
2014-07-21 23:34:00 +08:00
|
|
|
| class_declaration_statement { $$.u.ast = $1.u.ast; }
|
2014-07-11 05:04:42 +08:00
|
|
|
| T_HALT_COMPILER '(' ')' ';'
|
|
|
|
{ zend_error_noreturn(E_COMPILE_ERROR, "__HALT_COMPILER() can only be used from the outermost scope"); }
|
1999-05-15 23:47:24 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
statement:
|
2014-07-10 06:00:48 +08:00
|
|
|
unticked_statement { $$.u.ast = $1.u.ast; }
|
2014-07-27 02:54:41 +08:00
|
|
|
| T_STRING ':' { $$.u.ast = zend_ast_create_unary(ZEND_AST_LABEL, $1.u.ast); }
|
2000-01-25 03:00:30 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
unticked_statement:
|
2014-07-11 05:04:42 +08:00
|
|
|
'{' inner_statement_list '}' { $$.u.ast = $2.u.ast; }
|
|
|
|
| if_stmt { $$.u.ast = $1.u.ast; }
|
|
|
|
| alt_if_stmt { $$.u.ast = $1.u.ast; }
|
2014-07-10 20:35:59 +08:00
|
|
|
| T_WHILE parenthesis_expr while_statement
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_WHILE, $2.u.ast, $3.u.ast); }
|
2014-07-10 20:46:22 +08:00
|
|
|
| T_DO statement T_WHILE parenthesis_expr ';'
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_DO_WHILE, $2.u.ast, $4.u.ast); }
|
2014-07-10 21:18:08 +08:00
|
|
|
| T_FOR '(' for_expr ';' for_expr ';' for_expr ')' for_statement
|
2014-07-10 21:51:47 +08:00
|
|
|
{ $$.u.ast = zend_ast_create(4, ZEND_AST_FOR, $3.u.ast, $5.u.ast, $7.u.ast, $9.u.ast); }
|
2014-07-11 21:31:47 +08:00
|
|
|
| T_SWITCH parenthesis_expr switch_case_list
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_SWITCH, $2.u.ast, $3.u.ast); }
|
2014-07-10 05:39:21 +08:00
|
|
|
| T_BREAK ';' { $$.u.ast = zend_ast_create_unary(ZEND_BRK, NULL); }
|
|
|
|
| T_BREAK expr ';' { $$.u.ast = zend_ast_create_unary(ZEND_BRK, $2.u.ast); }
|
|
|
|
| T_CONTINUE ';' { $$.u.ast = zend_ast_create_unary(ZEND_CONT, NULL); }
|
|
|
|
| T_CONTINUE expr ';' { $$.u.ast = zend_ast_create_unary(ZEND_CONT, $2.u.ast); }
|
2014-07-08 03:06:02 +08:00
|
|
|
| T_RETURN ';'
|
2014-07-10 05:39:21 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_RETURN, NULL); }
|
2014-07-08 03:06:02 +08:00
|
|
|
| T_RETURN expr ';'
|
2014-07-10 05:39:21 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_RETURN, $2.u.ast); }
|
|
|
|
| T_GLOBAL global_var_list ';' { $$.u.ast = $2.u.ast; }
|
2014-07-12 23:00:53 +08:00
|
|
|
| T_STATIC static_var_list ';' { $$.u.ast = $2.u.ast; }
|
2014-07-10 05:39:21 +08:00
|
|
|
| T_ECHO echo_expr_list ';' { $$.u.ast = $2.u.ast; }
|
2014-07-27 02:54:41 +08:00
|
|
|
| T_INLINE_HTML { $$.u.ast = zend_ast_create_unary(ZEND_ECHO, $1.u.ast); }
|
2014-07-10 06:04:27 +08:00
|
|
|
| expr ';' { $$.u.ast = $1.u.ast; }
|
2014-07-10 05:39:21 +08:00
|
|
|
| T_UNSET '(' unset_variables ')' ';' { $$.u.ast = $3.u.ast; }
|
2014-07-11 18:16:21 +08:00
|
|
|
| T_FOREACH '(' expr T_AS foreach_variable ')' foreach_statement
|
|
|
|
{ $$.u.ast = zend_ast_create(4, ZEND_AST_FOREACH,
|
|
|
|
$3.u.ast, $5.u.ast, NULL, $7.u.ast); }
|
|
|
|
| T_FOREACH '(' expr T_AS foreach_variable T_DOUBLE_ARROW foreach_variable ')'
|
|
|
|
foreach_statement
|
|
|
|
{ $$.u.ast = zend_ast_create(4, ZEND_AST_FOREACH,
|
|
|
|
$3.u.ast, $7.u.ast, $5.u.ast, $9.u.ast); }
|
2014-07-22 22:11:19 +08:00
|
|
|
| T_DECLARE '(' const_list ')' declare_statement
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_DECLARE, $3.u.ast, $5.u.ast); }
|
2014-07-12 19:50:58 +08:00
|
|
|
| ';' /* empty statement */ { $$.u.ast = NULL; }
|
|
|
|
| T_TRY '{' inner_statement_list '}' catch_list finally_statement
|
|
|
|
{ $$.u.ast = zend_ast_create_ternary(ZEND_AST_TRY, $3.u.ast, $5.u.ast, $6.u.ast); }
|
2014-07-10 05:39:21 +08:00
|
|
|
| T_THROW expr ';' { $$.u.ast = zend_ast_create_unary(ZEND_THROW, $2.u.ast); }
|
2014-07-27 02:54:41 +08:00
|
|
|
| T_GOTO T_STRING ';' { $$.u.ast = zend_ast_create_unary(ZEND_GOTO, $2.u.ast); }
|
2002-03-03 04:38:52 +08:00
|
|
|
;
|
|
|
|
|
2014-07-12 19:50:58 +08:00
|
|
|
catch_list:
|
|
|
|
/* empty */
|
|
|
|
{ $$.u.ast = zend_ast_create_dynamic(ZEND_AST_CATCH_LIST); }
|
|
|
|
| catch_list T_CATCH '(' name T_VARIABLE ')' '{' inner_statement_list '}'
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast,
|
2014-07-27 02:54:41 +08:00
|
|
|
zend_ast_create_ternary(ZEND_AST_CATCH, $4.u.ast, $5.u.ast, $8.u.ast)); }
|
2002-03-01 22:04:51 +08:00
|
|
|
;
|
|
|
|
|
2014-07-12 19:50:58 +08:00
|
|
|
finally_statement:
|
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
|
|
|
| T_FINALLY '{' inner_statement_list '}' { $$.u.ast = $3.u.ast; }
|
2002-02-14 03:26:07 +08:00
|
|
|
;
|
|
|
|
|
2000-06-16 02:48:33 +08:00
|
|
|
unset_variables:
|
2014-07-10 05:39:21 +08:00
|
|
|
unset_variable { $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_STMT_LIST, $1.u.ast); }
|
|
|
|
| unset_variables ',' unset_variable { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
2000-06-16 02:48:33 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
unset_variable:
|
2014-07-10 05:39:21 +08:00
|
|
|
variable { $$.u.ast = zend_ast_create_unary(ZEND_AST_UNSET, $1.u.ast); }
|
2000-06-16 02:48:33 +08:00
|
|
|
;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-09-24 01:20:59 +08:00
|
|
|
function_declaration_statement:
|
2014-07-18 21:47:46 +08:00
|
|
|
function returns_ref T_STRING '(' parameter_list ')' '{' inner_statement_list '}'
|
2014-07-21 21:38:21 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_decl(ZEND_AST_FUNC_DECL, $2.EA,
|
2014-07-18 21:23:16 +08:00
|
|
|
$1.EA, CG(zend_lineno), LANG_SCNG(yy_text), $1.u.op.ptr,
|
2014-07-27 02:54:41 +08:00
|
|
|
zend_ast_get_str($3.u.ast), $5.u.ast, NULL, $8.u.ast); }
|
2002-09-24 01:20:59 +08:00
|
|
|
;
|
|
|
|
|
2002-12-07 01:09:44 +08:00
|
|
|
is_reference:
|
2013-09-27 00:39:17 +08:00
|
|
|
/* empty */ { $$.op_type = 0; }
|
2014-07-15 05:03:53 +08:00
|
|
|
| '&' { $$.op_type = ZEND_PARAM_REF; }
|
2002-12-07 01:09:44 +08:00
|
|
|
;
|
|
|
|
|
2013-09-27 00:39:17 +08:00
|
|
|
is_variadic:
|
|
|
|
/* empty */ { $$.op_type = 0; }
|
2014-07-15 05:03:53 +08:00
|
|
|
| T_ELLIPSIS { $$.op_type = ZEND_PARAM_VARIADIC; }
|
2013-09-27 00:39:17 +08:00
|
|
|
;
|
2002-12-07 01:09:44 +08:00
|
|
|
|
2014-07-21 23:34:00 +08:00
|
|
|
class_declaration_statement:
|
2014-07-21 22:34:45 +08:00
|
|
|
class_entry_type T_STRING extends_from implements_list
|
|
|
|
{ $$.u.op.ptr = CG(doc_comment); CG(doc_comment) = NULL; }
|
|
|
|
'{' class_statement_list '}'
|
|
|
|
{ $$.u.ast = zend_ast_create_decl(ZEND_AST_CLASS, $1.EA, $1.u.op.opline_num,
|
|
|
|
CG(zend_lineno), LANG_SCNG(yy_text), $5.u.op.ptr,
|
2014-07-27 02:54:41 +08:00
|
|
|
zend_ast_get_str($2.u.ast), $3.u.ast, $4.u.ast, $7.u.ast); }
|
2014-07-21 23:14:01 +08:00
|
|
|
| interface_entry T_STRING interface_extends_list
|
|
|
|
{ $$.u.op.ptr = CG(doc_comment); CG(doc_comment) = NULL; }
|
|
|
|
'{' class_statement_list '}'
|
|
|
|
{ $$.u.ast = zend_ast_create_decl(ZEND_AST_CLASS, $1.EA, $1.u.op.opline_num,
|
|
|
|
CG(zend_lineno), LANG_SCNG(yy_text), $4.u.op.ptr,
|
2014-07-27 02:54:41 +08:00
|
|
|
zend_ast_get_str($2.u.ast), NULL, $3.u.ast, $6.u.ast); }
|
2003-03-05 19:14:44 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
class_entry_type:
|
2010-04-20 18:57:45 +08:00
|
|
|
T_CLASS { $$.u.op.opline_num = CG(zend_lineno); $$.EA = 0; }
|
|
|
|
| T_ABSTRACT T_CLASS { $$.u.op.opline_num = CG(zend_lineno); $$.EA = ZEND_ACC_EXPLICIT_ABSTRACT_CLASS; }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
| T_TRAIT { $$.u.op.opline_num = CG(zend_lineno); $$.EA = ZEND_ACC_TRAIT; }
|
2010-04-20 18:57:45 +08:00
|
|
|
| T_FINAL T_CLASS { $$.u.op.opline_num = CG(zend_lineno); $$.EA = ZEND_ACC_FINAL_CLASS; }
|
2002-07-18 02:36:29 +08:00
|
|
|
;
|
|
|
|
|
2014-07-21 23:14:01 +08:00
|
|
|
interface_entry:
|
|
|
|
T_INTERFACE { $$.u.op.opline_num = CG(zend_lineno); $$.EA = ZEND_ACC_INTERFACE; }
|
|
|
|
;
|
|
|
|
|
2002-07-18 02:36:29 +08:00
|
|
|
extends_from:
|
2014-07-21 22:34:45 +08:00
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
|
|
|
| T_EXTENDS name { $$.u.ast = $2.u.ast; }
|
2003-03-05 19:14:44 +08:00
|
|
|
;
|
|
|
|
|
2014-07-21 23:14:01 +08:00
|
|
|
interface_extends_list:
|
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
|
|
|
| T_EXTENDS name_list { $$.u.ast = $2.u.ast; }
|
2004-02-12 06:13:39 +08:00
|
|
|
;
|
|
|
|
|
2003-03-05 19:14:44 +08:00
|
|
|
implements_list:
|
2014-07-21 22:34:45 +08:00
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
|
|
|
| T_IMPLEMENTS name_list { $$.u.ast = $2.u.ast; }
|
2001-12-22 23:31:44 +08:00
|
|
|
;
|
1999-05-15 23:47:24 +08:00
|
|
|
|
2003-07-24 20:38:33 +08:00
|
|
|
foreach_variable:
|
2014-07-11 18:16:21 +08:00
|
|
|
variable { $$.u.ast = $1.u.ast; }
|
|
|
|
| '&' variable { $$.u.ast = zend_ast_create_unary(ZEND_AST_REF, $2.u.ast); }
|
|
|
|
| T_LIST '(' assignment_list ')' { $$.u.ast = $3.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
for_statement:
|
2014-07-10 21:18:08 +08:00
|
|
|
statement { $$.u.ast = $1.u.ast; }
|
2014-07-11 05:04:42 +08:00
|
|
|
| ':' inner_statement_list T_ENDFOR ';' { $$.u.ast = $2.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
foreach_statement:
|
2014-07-11 18:16:21 +08:00
|
|
|
statement { $$.u.ast = $1.u.ast; }
|
|
|
|
| ':' inner_statement_list T_ENDFOREACH ';' { $$.u.ast = $2.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2000-01-25 03:00:30 +08:00
|
|
|
declare_statement:
|
2014-07-22 22:11:19 +08:00
|
|
|
statement { $$.u.ast = $1.u.ast; }
|
|
|
|
| ':' inner_statement_list T_ENDDECLARE ';' { $$.u.ast = $2.u.ast; }
|
2000-01-25 03:00:30 +08:00
|
|
|
;
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
switch_case_list:
|
2014-07-11 21:31:47 +08:00
|
|
|
'{' case_list '}' { $$.u.ast = $2.u.ast; }
|
|
|
|
| '{' ';' case_list '}' { $$.u.ast = $3.u.ast; }
|
|
|
|
| ':' case_list T_ENDSWITCH ';' { $$.u.ast = $2.u.ast; }
|
|
|
|
| ':' ';' case_list T_ENDSWITCH ';' { $$.u.ast = $3.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
case_list:
|
2014-07-11 21:31:47 +08:00
|
|
|
/* empty */ { $$.u.ast = zend_ast_create_dynamic(ZEND_AST_SWITCH_LIST); }
|
|
|
|
| case_list T_CASE expr case_separator inner_statement_list
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast,
|
|
|
|
zend_ast_create_binary(ZEND_AST_SWITCH_CASE, $3.u.ast, $5.u.ast)); }
|
|
|
|
| case_list T_DEFAULT case_separator inner_statement_list
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast,
|
|
|
|
zend_ast_create_binary(ZEND_AST_SWITCH_CASE, NULL, $4.u.ast)); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
case_separator:
|
|
|
|
':'
|
|
|
|
| ';'
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
while_statement:
|
2014-07-10 20:35:59 +08:00
|
|
|
statement { $$.u.ast = $1.u.ast; }
|
2014-07-11 05:04:42 +08:00
|
|
|
| ':' inner_statement_list T_ENDWHILE ';' { $$.u.ast = $2.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2014-07-10 22:38:04 +08:00
|
|
|
if_stmt_without_else:
|
|
|
|
T_IF parenthesis_expr statement
|
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_IF,
|
|
|
|
zend_ast_create_binary(ZEND_AST_IF_ELEM, $2.u.ast, $3.u.ast)); }
|
|
|
|
| if_stmt_without_else T_ELSEIF parenthesis_expr statement
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast,
|
|
|
|
zend_ast_create_binary(ZEND_AST_IF_ELEM, $3.u.ast, $4.u.ast)); }
|
|
|
|
;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-07-10 22:38:04 +08:00
|
|
|
if_stmt:
|
|
|
|
if_stmt_without_else { $$.u.ast = $1.u.ast; }
|
|
|
|
| if_stmt_without_else T_ELSE statement
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast,
|
|
|
|
zend_ast_create_binary(ZEND_AST_IF_ELEM, NULL, $3.u.ast)); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2014-07-11 05:04:42 +08:00
|
|
|
alt_if_stmt_without_else:
|
|
|
|
T_IF parenthesis_expr ':' inner_statement_list
|
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_IF,
|
|
|
|
zend_ast_create_binary(ZEND_AST_IF_ELEM, $2.u.ast, $4.u.ast)); }
|
|
|
|
| alt_if_stmt_without_else T_ELSEIF parenthesis_expr ':' inner_statement_list
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast,
|
|
|
|
zend_ast_create_binary(ZEND_AST_IF_ELEM, $3.u.ast, $5.u.ast)); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2014-07-11 05:04:42 +08:00
|
|
|
alt_if_stmt:
|
|
|
|
alt_if_stmt_without_else T_ENDIF ';' { $$.u.ast = $1.u.ast; }
|
|
|
|
| alt_if_stmt_without_else T_ELSE ':' inner_statement_list T_ENDIF ';'
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast,
|
|
|
|
zend_ast_create_binary(ZEND_AST_IF_ELEM, NULL, $4.u.ast)); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2006-05-12 05:07:39 +08:00
|
|
|
parameter_list:
|
2014-07-15 05:03:53 +08:00
|
|
|
non_empty_parameter_list { $$.u.ast = $1.u.ast; }
|
|
|
|
| /* empty */ { $$.u.ast = zend_ast_create_dynamic(ZEND_AST_PARAM_LIST); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
non_empty_parameter_list:
|
2013-09-27 01:43:32 +08:00
|
|
|
parameter
|
2014-07-15 05:03:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_PARAM_LIST, $1.u.ast); }
|
2013-09-27 01:43:32 +08:00
|
|
|
| non_empty_parameter_list ',' parameter
|
2014-07-15 05:03:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
2013-09-27 01:43:32 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
parameter:
|
2014-07-15 05:03:53 +08:00
|
|
|
optional_type is_reference is_variadic T_VARIABLE
|
|
|
|
{ $$.u.ast = zend_ast_create_ex(3, ZEND_AST_PARAM, $2.op_type | $3.op_type,
|
2014-07-27 02:54:41 +08:00
|
|
|
$1.u.ast, $4.u.ast, NULL); }
|
2014-07-15 05:03:53 +08:00
|
|
|
| optional_type is_reference is_variadic T_VARIABLE '=' expr
|
|
|
|
{ $$.u.ast = zend_ast_create_ex(3, ZEND_AST_PARAM, $2.op_type | $3.op_type,
|
2014-07-27 02:54:41 +08:00
|
|
|
$1.u.ast, $4.u.ast, $6.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2014-07-15 05:03:53 +08:00
|
|
|
optional_type:
|
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
|
|
|
| T_ARRAY { $$.u.ast = zend_ast_create_ex(0, ZEND_AST_TYPE, IS_ARRAY); }
|
|
|
|
| T_CALLABLE { $$.u.ast = zend_ast_create_ex(0, ZEND_AST_TYPE, IS_CALLABLE); }
|
|
|
|
| name { $$.u.ast = $1.u.ast; }
|
2003-03-06 22:31:17 +08:00
|
|
|
;
|
|
|
|
|
2014-07-13 19:11:55 +08:00
|
|
|
argument_list:
|
|
|
|
'(' ')' { $$.u.ast = zend_ast_create_dynamic(ZEND_AST_ARG_LIST); }
|
|
|
|
| '(' non_empty_argument_list ')' { $$.u.ast = $2.u.ast; }
|
2014-06-07 19:06:53 +08:00
|
|
|
;
|
|
|
|
|
2014-07-13 19:11:55 +08:00
|
|
|
non_empty_argument_list:
|
|
|
|
argument
|
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_ARG_LIST, $1.u.ast); }
|
|
|
|
| non_empty_argument_list ',' argument
|
2014-06-22 01:26:17 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
;
|
|
|
|
|
2014-07-13 19:11:55 +08:00
|
|
|
argument:
|
2014-06-15 00:30:18 +08:00
|
|
|
expr_without_variable { $$.u.ast = $1.u.ast; }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable { $$.u.ast = $1.u.ast; }
|
2014-06-19 19:57:29 +08:00
|
|
|
/*| '&' variable { ZEND_ASSERT(0); } */
|
2014-06-15 00:30:18 +08:00
|
|
|
| T_ELLIPSIS expr { $$.u.ast = zend_ast_create_unary(ZEND_AST_UNPACK, $2.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
;
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
global_var_list:
|
2014-07-10 05:39:21 +08:00
|
|
|
global_var_list ',' global_var { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
|
|
|
| global_var { $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_STMT_LIST, $1.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
global_var:
|
2014-06-07 19:06:53 +08:00
|
|
|
simple_variable
|
2014-07-23 02:24:47 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_GLOBAL,
|
|
|
|
zend_ast_create_unary(ZEND_AST_VAR, $1.u.ast)); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
static_var_list:
|
2014-07-12 23:00:53 +08:00
|
|
|
static_var_list ',' static_var { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
|
|
|
| static_var { $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_STMT_LIST, $1.u.ast); }
|
|
|
|
;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-07-12 23:00:53 +08:00
|
|
|
static_var:
|
|
|
|
T_VARIABLE
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_STATIC, $1.u.ast, NULL); }
|
2014-07-12 23:00:53 +08:00
|
|
|
| T_VARIABLE '=' expr
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_STATIC, $1.u.ast, $3.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
class_statement_list:
|
|
|
|
class_statement_list class_statement
|
2014-07-21 22:34:45 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $2.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
| /* empty */
|
2014-07-21 22:34:45 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_dynamic(ZEND_AST_STMT_LIST); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
class_statement:
|
2014-07-19 20:54:56 +08:00
|
|
|
variable_modifiers property_list ';'
|
2014-07-21 22:34:45 +08:00
|
|
|
{ $$.u.ast = $2.u.ast; $$.u.ast->attr = Z_LVAL($1.u.constant); }
|
2014-07-22 17:55:07 +08:00
|
|
|
| T_CONST class_const_list ';'
|
2014-07-22 19:52:35 +08:00
|
|
|
{ $$.u.ast = $2.u.ast; zend_discard_doc_comment(TSRMLS_C); }
|
2014-07-20 04:39:01 +08:00
|
|
|
| T_USE name_list trait_adaptations
|
2014-07-21 22:34:45 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_USE_TRAIT, $2.u.ast, $3.u.ast); }
|
2014-07-19 18:52:44 +08:00
|
|
|
| method_modifiers function returns_ref T_STRING '(' parameter_list ')' method_body
|
2014-07-21 21:38:21 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_decl(ZEND_AST_METHOD, $3.EA | Z_LVAL($1.u.constant),
|
2014-07-19 18:52:44 +08:00
|
|
|
$2.EA, CG(zend_lineno), LANG_SCNG(yy_text), $2.u.op.ptr,
|
2014-07-27 02:54:41 +08:00
|
|
|
zend_ast_get_str($4.u.ast), $6.u.ast, NULL, $8.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2014-07-20 04:39:01 +08:00
|
|
|
name_list:
|
|
|
|
name { $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_NAME_LIST, $1.u.ast); }
|
|
|
|
| name_list ',' name { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_adaptations:
|
2014-07-20 04:39:01 +08:00
|
|
|
';' { $$.u.ast = NULL; }
|
|
|
|
| '{' '}' { $$.u.ast = NULL; }
|
|
|
|
| '{' trait_adaptation_list '}' { $$.u.ast = $2.u.ast; }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_adaptation_list:
|
2014-07-20 04:39:01 +08:00
|
|
|
trait_adaptation
|
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_TRAIT_ADAPTATIONS, $1.u.ast); }
|
|
|
|
| trait_adaptation_list trait_adaptation
|
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $2.u.ast); }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
|
|
|
|
2014-07-20 04:39:01 +08:00
|
|
|
trait_adaptation:
|
|
|
|
trait_precedence ';' { $$.u.ast = $1.u.ast; }
|
|
|
|
| trait_alias ';' { $$.u.ast = $1.u.ast; }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_precedence:
|
2014-07-20 04:39:01 +08:00
|
|
|
absolute_trait_method_reference T_INSTEADOF name_list
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_TRAIT_PRECEDENCE, $1.u.ast, $3.u.ast); }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
|
|
|
|
2014-07-20 04:39:01 +08:00
|
|
|
trait_alias:
|
|
|
|
trait_method_reference T_AS trait_modifiers T_STRING
|
|
|
|
{ $$.u.ast = zend_ast_create_ex(2, ZEND_AST_TRAIT_ALIAS,
|
2014-07-27 02:54:41 +08:00
|
|
|
Z_LVAL($3.u.constant), $1.u.ast, $4.u.ast); }
|
2014-07-20 04:39:01 +08:00
|
|
|
| trait_method_reference T_AS member_modifier
|
|
|
|
{ $$.u.ast = zend_ast_create_ex(2, ZEND_AST_TRAIT_ALIAS,
|
|
|
|
Z_LVAL($3.u.constant), $1.u.ast, NULL); }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_method_reference:
|
2014-07-20 04:39:01 +08:00
|
|
|
T_STRING
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_METHOD_REFERENCE, NULL, $1.u.ast); }
|
2014-07-20 04:39:01 +08:00
|
|
|
| absolute_trait_method_reference { $$.u.ast = $1.u.ast; }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
|
|
|
|
2014-07-20 04:39:01 +08:00
|
|
|
absolute_trait_method_reference:
|
|
|
|
name T_PAAMAYIM_NEKUDOTAYIM T_STRING
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_METHOD_REFERENCE, $1.u.ast, $3.u.ast); }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_modifiers:
|
2014-07-20 04:39:01 +08:00
|
|
|
/* empty */ { Z_LVAL($$.u.constant) = 0; }
|
|
|
|
| member_modifier { $$ = $1; }
|
Implemented Traits for PHP as proposed in the RFC [TRAITS]
# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)
2010-04-23 06:05:56 +08:00
|
|
|
;
|
2003-02-11 17:48:37 +08:00
|
|
|
|
|
|
|
method_body:
|
2014-07-19 18:52:44 +08:00
|
|
|
';' /* abstract method */ { $$.u.ast = NULL; }
|
|
|
|
| '{' inner_statement_list '}' { $$.u.ast = $2.u.ast; }
|
2003-02-11 17:48:37 +08:00
|
|
|
;
|
|
|
|
|
2002-12-09 20:10:17 +08:00
|
|
|
variable_modifiers:
|
2003-02-11 17:48:37 +08:00
|
|
|
non_empty_member_modifiers { $$ = $1; }
|
2006-05-12 05:07:39 +08:00
|
|
|
| T_VAR { Z_LVAL($$.u.constant) = ZEND_ACC_PUBLIC; }
|
2002-11-06 03:37:31 +08:00
|
|
|
;
|
2002-12-07 01:09:44 +08:00
|
|
|
|
|
|
|
method_modifiers:
|
2014-07-19 18:52:44 +08:00
|
|
|
/* empty */ { Z_LVAL($$.u.constant) = ZEND_ACC_PUBLIC; }
|
|
|
|
| non_empty_member_modifiers { $$ = $1; if (!(Z_LVAL($$.u.constant) & ZEND_ACC_PPP_MASK)) { Z_LVAL($$.u.constant) |= ZEND_ACC_PUBLIC; } }
|
2002-06-29 23:38:40 +08:00
|
|
|
;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-02-11 17:48:37 +08:00
|
|
|
non_empty_member_modifiers:
|
|
|
|
member_modifier { $$ = $1; }
|
2006-05-12 05:07:39 +08:00
|
|
|
| non_empty_member_modifiers member_modifier { Z_LVAL($$.u.constant) = zend_do_verify_access_types(&$1, &$2); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2003-02-11 17:48:37 +08:00
|
|
|
member_modifier:
|
2006-05-12 05:07:39 +08:00
|
|
|
T_PUBLIC { Z_LVAL($$.u.constant) = ZEND_ACC_PUBLIC; }
|
|
|
|
| T_PROTECTED { Z_LVAL($$.u.constant) = ZEND_ACC_PROTECTED; }
|
|
|
|
| T_PRIVATE { Z_LVAL($$.u.constant) = ZEND_ACC_PRIVATE; }
|
|
|
|
| T_STATIC { Z_LVAL($$.u.constant) = ZEND_ACC_STATIC; }
|
|
|
|
| T_ABSTRACT { Z_LVAL($$.u.constant) = ZEND_ACC_ABSTRACT; }
|
|
|
|
| T_FINAL { Z_LVAL($$.u.constant) = ZEND_ACC_FINAL; }
|
2002-12-07 01:09:44 +08:00
|
|
|
;
|
|
|
|
|
2014-07-19 20:54:56 +08:00
|
|
|
property_list:
|
|
|
|
property_list ',' property { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
|
|
|
| property { $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_PROP_DECL, $1.u.ast); }
|
|
|
|
;
|
|
|
|
|
|
|
|
property:
|
2014-07-27 02:54:41 +08:00
|
|
|
T_VARIABLE { $$.u.ast = zend_ast_create_binary(ZEND_AST_PROP_ELEM, $1.u.ast, NULL); }
|
2014-07-19 20:54:56 +08:00
|
|
|
| T_VARIABLE '=' expr
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_PROP_ELEM, $1.u.ast, $3.u.ast); }
|
2001-11-27 02:05:01 +08:00
|
|
|
;
|
1999-08-19 23:15:34 +08:00
|
|
|
|
2014-07-19 21:13:50 +08:00
|
|
|
class_const_list:
|
2014-07-22 17:55:07 +08:00
|
|
|
class_const_list ',' const_decl { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
|
|
|
| const_decl
|
2014-07-19 21:13:50 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_CLASS_CONST_DECL, $1.u.ast); }
|
|
|
|
;
|
|
|
|
|
2014-07-22 17:55:07 +08:00
|
|
|
const_decl:
|
|
|
|
T_STRING '=' expr
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_CONST_ELEM, $1.u.ast, $3.u.ast); }
|
2001-12-01 00:29:47 +08:00
|
|
|
;
|
|
|
|
|
2006-05-12 05:07:39 +08:00
|
|
|
echo_expr_list:
|
2014-07-10 05:39:21 +08:00
|
|
|
echo_expr_list ',' echo_expr { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
|
|
|
| echo_expr { $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_STMT_LIST, $1.u.ast); }
|
2014-07-08 03:14:14 +08:00
|
|
|
;
|
|
|
|
echo_expr:
|
2014-07-10 05:39:21 +08:00
|
|
|
expr { $$.u.ast = zend_ast_create_unary(ZEND_ECHO, $1.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
for_expr:
|
2014-07-10 21:18:08 +08:00
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
|
|
|
| non_empty_for_expr { $$.u.ast = $1.u.ast; }
|
1999-08-19 23:15:34 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
non_empty_for_expr:
|
2014-07-10 21:18:08 +08:00
|
|
|
non_empty_for_expr ',' expr { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
|
|
|
| expr { $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_EXPR_LIST, $1.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2011-11-06 21:25:45 +08:00
|
|
|
new_expr:
|
2014-06-15 00:30:18 +08:00
|
|
|
T_NEW class_name_reference ctor_arguments
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_NEW, $2.u.ast, $3.u.ast); }
|
2011-11-06 21:25:45 +08:00
|
|
|
;
|
|
|
|
|
2006-05-12 05:07:39 +08:00
|
|
|
expr_without_variable:
|
2014-06-07 19:06:53 +08:00
|
|
|
T_LIST '(' assignment_list ')' '=' expr
|
2014-06-15 00:30:18 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_ASSIGN, $3.u.ast, $6.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable '=' expr
|
2014-06-15 00:30:18 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_ASSIGN, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable '=' '&' variable
|
2014-06-15 00:30:18 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_ASSIGN_REF, $1.u.ast, $4.u.ast); }
|
|
|
|
| variable '=' '&' T_NEW class_name_reference ctor_arguments
|
|
|
|
{ zend_error(E_DEPRECATED, "Assigning the return value of new by reference is deprecated");
|
|
|
|
$$.u.ast = zend_ast_create_binary(ZEND_AST_ASSIGN_REF, $1.u.ast,
|
|
|
|
zend_ast_create_binary(ZEND_NEW, $5.u.ast, $6.u.ast)); }
|
|
|
|
| T_CLONE expr { $$.u.ast = zend_ast_create_unary(ZEND_CLONE, $2.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_PLUS_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_ADD, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_MINUS_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_SUB, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_MUL_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_MUL, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_POW_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_POW, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_DIV_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_DIV, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_CONCAT_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_CONCAT, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_MOD_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_MOD, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_AND_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_BW_AND, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_OR_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_BW_OR, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_XOR_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_BW_XOR, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_SL_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_SL, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable T_SR_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_assign_op(ZEND_ASSIGN_SR, $1.u.ast, $3.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| variable T_INC { $$.u.ast = zend_ast_create_unary(ZEND_POST_INC, $1.u.ast); }
|
|
|
|
| T_INC variable { $$.u.ast = zend_ast_create_unary(ZEND_PRE_INC, $2.u.ast); }
|
|
|
|
| variable T_DEC { $$.u.ast = zend_ast_create_unary(ZEND_POST_DEC, $1.u.ast); }
|
|
|
|
| T_DEC variable { $$.u.ast = zend_ast_create_unary(ZEND_PRE_DEC, $2.u.ast); }
|
|
|
|
| expr T_BOOLEAN_OR expr
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_OR, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_BOOLEAN_AND expr
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_AND, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_LOGICAL_OR expr
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_OR, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_LOGICAL_AND expr
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_AND, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_LOGICAL_XOR expr
|
2014-06-27 04:02:54 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary_op(ZEND_BOOL_XOR, $1.u.ast, $3.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| expr '|' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_BW_OR, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr '&' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_BW_AND, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr '^' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_BW_XOR, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr '.' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_CONCAT, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr '+' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_ADD, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr '-' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_SUB, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr '*' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_MUL, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_POW expr { $$.u.ast = zend_ast_create_binary_op(ZEND_POW, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr '/' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_DIV, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr '%' expr { $$.u.ast = zend_ast_create_binary_op(ZEND_MOD, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_SL expr { $$.u.ast = zend_ast_create_binary_op(ZEND_SL, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_SR expr { $$.u.ast = zend_ast_create_binary_op(ZEND_SR, $1.u.ast, $3.u.ast); }
|
2014-06-26 18:43:20 +08:00
|
|
|
| '+' expr %prec T_INC { $$.u.ast = zend_ast_create_unary(ZEND_AST_UNARY_PLUS, $2.u.ast); }
|
|
|
|
| '-' expr %prec T_INC { $$.u.ast = zend_ast_create_unary(ZEND_AST_UNARY_MINUS, $2.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| '!' expr { $$.u.ast = zend_ast_create_unary(ZEND_BOOL_NOT, $2.u.ast); }
|
|
|
|
| '~' expr { $$.u.ast = zend_ast_create_unary(ZEND_BW_NOT, $2.u.ast); }
|
|
|
|
| expr T_IS_IDENTICAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary_op(ZEND_IS_IDENTICAL, $1.u.ast, $3.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| expr T_IS_NOT_IDENTICAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary_op(ZEND_IS_NOT_IDENTICAL, $1.u.ast, $3.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| expr T_IS_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary_op(ZEND_IS_EQUAL, $1.u.ast, $3.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| expr T_IS_NOT_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary_op(ZEND_IS_NOT_EQUAL, $1.u.ast, $3.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| expr '<' expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary_op(ZEND_IS_SMALLER, $1.u.ast, $3.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| expr T_IS_SMALLER_OR_EQUAL expr
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary_op(ZEND_IS_SMALLER_OR_EQUAL, $1.u.ast, $3.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| expr '>' expr
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_GREATER, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_IS_GREATER_OR_EQUAL expr
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_GREATER_EQUAL, $1.u.ast, $3.u.ast); }
|
|
|
|
| expr T_INSTANCEOF class_name_reference
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_INSTANCEOF, $1.u.ast, $3.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| parenthesis_expr { $$.u.ast = $1.u.ast; }
|
2014-06-15 00:30:18 +08:00
|
|
|
| new_expr { $$.u.ast = $1.u.ast; }
|
|
|
|
| expr '?' expr ':' expr
|
|
|
|
{ $$.u.ast = zend_ast_create_ternary(
|
|
|
|
ZEND_AST_CONDITIONAL, $1.u.ast, $3.u.ast, $5.u.ast); }
|
|
|
|
| expr '?' ':' expr
|
|
|
|
{ $$.u.ast = zend_ast_create_ternary(ZEND_AST_CONDITIONAL, $1.u.ast, NULL, $4.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| internal_functions_in_yacc { $$.u.ast = $1.u.ast; }
|
|
|
|
| T_INT_CAST expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_cast(IS_LONG, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_DOUBLE_CAST expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_cast(IS_DOUBLE, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_STRING_CAST expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_cast(IS_STRING, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_ARRAY_CAST expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_cast(IS_ARRAY, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_OBJECT_CAST expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_cast(IS_OBJECT, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_BOOL_CAST expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_cast(_IS_BOOL, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_UNSET_CAST expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_cast(IS_NULL, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_EXIT exit_expr { $$.u.ast = zend_ast_create_unary(ZEND_EXIT, $2.u.ast); }
|
|
|
|
| '@' expr { $$.u.ast = zend_ast_create_unary(ZEND_AST_SILENCE, $2.u.ast); }
|
|
|
|
| scalar { $$.u.ast = $1.u.ast; }
|
|
|
|
| '`' backticks_expr '`' { $$.u.ast = zend_ast_create_unary(ZEND_AST_SHELL_EXEC, $2.u.ast); }
|
2014-06-15 00:30:18 +08:00
|
|
|
| T_PRINT expr { $$.u.ast = zend_ast_create_unary(ZEND_PRINT, $2.u.ast); }
|
|
|
|
| T_YIELD { $$.u.ast = zend_ast_create_binary(ZEND_YIELD, NULL, NULL); }
|
2014-06-19 04:32:08 +08:00
|
|
|
| T_YIELD expr { $$.u.ast = zend_ast_create_binary(ZEND_YIELD, $2.u.ast, NULL); }
|
|
|
|
| T_YIELD expr T_DOUBLE_ARROW expr
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_YIELD, $4.u.ast, $2.u.ast); }
|
2014-07-18 21:47:46 +08:00
|
|
|
| function returns_ref '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
|
2014-07-21 21:38:21 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_decl(ZEND_AST_CLOSURE, $2.EA,
|
2014-07-18 21:23:16 +08:00
|
|
|
$1.EA, CG(zend_lineno), LANG_SCNG(yy_text), $1.u.op.ptr,
|
2014-07-18 20:57:00 +08:00
|
|
|
STR_INIT("{closure}", sizeof("{closure}") - 1, 0),
|
2014-07-18 21:47:46 +08:00
|
|
|
$4.u.ast, $6.u.ast, $8.u.ast); }
|
|
|
|
| T_STATIC function returns_ref '(' parameter_list ')' lexical_vars
|
|
|
|
'{' inner_statement_list '}'
|
2014-07-21 21:38:21 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_decl(ZEND_AST_CLOSURE,
|
2014-07-18 21:47:46 +08:00
|
|
|
$3.EA | ZEND_ACC_STATIC, $2.EA, CG(zend_lineno), LANG_SCNG(yy_text),
|
|
|
|
$2.u.op.ptr, STR_INIT("{closure}", sizeof("{closure}") - 1, 0),
|
|
|
|
$5.u.ast, $7.u.ast, $9.u.ast); }
|
2008-07-14 17:49:03 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
function:
|
2014-07-18 21:23:16 +08:00
|
|
|
T_FUNCTION
|
|
|
|
{ $$.EA = CG(zend_lineno); $$.u.op.ptr = CG(doc_comment); CG(doc_comment) = NULL; }
|
|
|
|
;
|
|
|
|
|
2014-07-18 21:47:46 +08:00
|
|
|
returns_ref:
|
|
|
|
/* empty */ { $$.EA = 0; }
|
|
|
|
| '&' { $$.EA = ZEND_ACC_RETURN_REFERENCE; }
|
|
|
|
;
|
|
|
|
|
2008-07-14 17:49:03 +08:00
|
|
|
lexical_vars:
|
2014-07-18 18:30:39 +08:00
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
|
|
|
| T_USE '(' lexical_var_list ')' { $$.u.ast = $3.u.ast; }
|
2008-07-14 17:49:03 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
lexical_var_list:
|
2014-07-18 18:30:39 +08:00
|
|
|
lexical_var_list ',' lexical_var { $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
|
|
|
| lexical_var { $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_CLOSURE_USES, $1.u.ast); }
|
|
|
|
;
|
|
|
|
|
|
|
|
lexical_var:
|
2014-07-27 02:54:41 +08:00
|
|
|
T_VARIABLE { $$.u.ast = $1.u.ast; }
|
|
|
|
| '&' T_VARIABLE { $$.u.ast = $2.u.ast; $$.u.ast->attr = 1; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
1999-12-16 04:15:32 +08:00
|
|
|
function_call:
|
2014-07-13 19:11:55 +08:00
|
|
|
name argument_list
|
2014-07-05 05:08:05 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_CALL, $1.u.ast, $2.u.ast); }
|
2014-07-13 19:11:55 +08:00
|
|
|
| class_name T_PAAMAYIM_NEKUDOTAYIM member_name argument_list
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ternary(ZEND_AST_STATIC_CALL,
|
2014-07-20 05:30:07 +08:00
|
|
|
$1.u.ast, $3.u.ast, $4.u.ast); }
|
2014-07-13 19:11:55 +08:00
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM member_name argument_list
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ternary(ZEND_AST_STATIC_CALL,
|
2014-06-19 19:57:29 +08:00
|
|
|
$1.u.ast, $3.u.ast, $4.u.ast); }
|
2014-07-13 19:11:55 +08:00
|
|
|
| callable_expr argument_list
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_CALL, $1.u.ast, $2.u.ast); }
|
1999-12-16 04:15:32 +08:00
|
|
|
;
|
|
|
|
|
2007-11-12 06:11:25 +08:00
|
|
|
class_name:
|
2014-07-20 05:30:07 +08:00
|
|
|
T_STATIC
|
|
|
|
{ zval zv; ZVAL_STRINGL(&zv, "static", sizeof("static")-1);
|
2014-07-22 19:25:47 +08:00
|
|
|
$$.u.ast = zend_ast_create_zval_ex(&zv, ZEND_NAME_NOT_FQ); }
|
2014-07-20 05:30:07 +08:00
|
|
|
| name { $$.u.ast = $1.u.ast; }
|
2007-11-12 06:11:25 +08:00
|
|
|
;
|
|
|
|
|
2003-06-22 18:50:43 +08:00
|
|
|
class_name_reference:
|
2014-07-20 05:30:07 +08:00
|
|
|
class_name { $$.u.ast = $1.u.ast; }
|
2014-06-15 00:30:18 +08:00
|
|
|
| new_variable { $$.u.ast = $1.u.ast; }
|
2001-10-30 01:19:02 +08:00
|
|
|
;
|
1999-12-16 04:15:32 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
exit_expr:
|
2014-06-15 00:30:18 +08:00
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
|
|
|
| '(' ')' { $$.u.ast = NULL; }
|
2014-06-19 19:57:29 +08:00
|
|
|
| parenthesis_expr { $$.u.ast = $1.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2008-07-26 23:30:28 +08:00
|
|
|
backticks_expr:
|
2014-06-19 19:57:29 +08:00
|
|
|
/* empty */
|
2014-07-27 01:01:14 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_zval_from_str(STR_EMPTY_ALLOC()); }
|
2014-07-27 02:54:41 +08:00
|
|
|
| T_ENCAPSED_AND_WHITESPACE { $$.u.ast = $1.u.ast; }
|
2014-06-22 02:03:29 +08:00
|
|
|
| encaps_list { $$.u.ast = $1.u.ast; }
|
2008-07-26 23:30:28 +08:00
|
|
|
;
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
ctor_arguments:
|
2014-07-13 19:11:55 +08:00
|
|
|
/* empty */ { $$.u.ast = zend_ast_create_dynamic(ZEND_AST_ARG_LIST); }
|
|
|
|
| argument_list { $$.u.ast = $1.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2014-05-31 22:44:53 +08:00
|
|
|
dereferencable_scalar:
|
2014-06-19 19:57:29 +08:00
|
|
|
T_ARRAY '(' array_pair_list ')' { $$.u.ast = $3.u.ast; }
|
|
|
|
| '[' array_pair_list ']' { $$.u.ast = $2.u.ast; }
|
2014-07-27 02:54:41 +08:00
|
|
|
| T_CONSTANT_ENCAPSED_STRING { $$.u.ast = $1.u.ast; }
|
2014-05-31 22:44:53 +08:00
|
|
|
;
|
|
|
|
|
2014-06-27 04:04:09 +08:00
|
|
|
scalar:
|
2014-07-27 02:54:41 +08:00
|
|
|
T_LNUMBER { $$.u.ast = $1.u.ast; }
|
|
|
|
| T_DNUMBER { $$.u.ast = $1.u.ast; }
|
|
|
|
| T_LINE { $$.u.ast = $1.u.ast; }
|
|
|
|
| T_FILE { $$.u.ast = $1.u.ast; }
|
|
|
|
| T_DIR { $$.u.ast = $1.u.ast; }
|
2014-07-21 23:34:00 +08:00
|
|
|
| T_TRAIT_C { $$.u.ast = zend_ast_create_ex(0, ZEND_AST_MAGIC_CONST, T_TRAIT_C); }
|
2014-07-17 05:23:25 +08:00
|
|
|
| T_METHOD_C { $$.u.ast = zend_ast_create_ex(0, ZEND_AST_MAGIC_CONST, T_METHOD_C); }
|
2014-07-17 05:10:16 +08:00
|
|
|
| T_FUNC_C { $$.u.ast = zend_ast_create_ex(0, ZEND_AST_MAGIC_CONST, T_FUNC_C); }
|
2014-07-22 18:45:44 +08:00
|
|
|
| T_NS_C { $$.u.ast = zend_ast_create_ex(0, ZEND_AST_MAGIC_CONST, T_NS_C); }
|
2014-07-21 23:34:00 +08:00
|
|
|
| T_CLASS_C { $$.u.ast = zend_ast_create_ex(0, ZEND_AST_MAGIC_CONST, T_CLASS_C); }
|
2014-07-27 02:54:41 +08:00
|
|
|
| T_START_HEREDOC T_ENCAPSED_AND_WHITESPACE T_END_HEREDOC { $$.u.ast = $2.u.ast; }
|
2014-06-27 04:04:09 +08:00
|
|
|
| T_START_HEREDOC T_END_HEREDOC
|
2014-07-27 01:01:14 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_zval_from_str(STR_EMPTY_ALLOC()); }
|
2014-06-27 04:04:09 +08:00
|
|
|
| '"' encaps_list '"' { $$.u.ast = $2.u.ast; }
|
|
|
|
| T_START_HEREDOC encaps_list T_END_HEREDOC { $$.u.ast = $2.u.ast; }
|
|
|
|
| dereferencable_scalar { $$.u.ast = $1.u.ast; }
|
|
|
|
| class_name_scalar { $$.u.ast = $1.u.ast; }
|
2014-06-19 19:57:29 +08:00
|
|
|
| class_constant { $$.u.ast = $1.u.ast; }
|
2014-07-05 05:08:05 +08:00
|
|
|
| name { $$.u.ast = zend_ast_create_unary(ZEND_AST_CONST, $1.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2000-03-14 23:37:15 +08:00
|
|
|
possible_comma:
|
|
|
|
/* empty */
|
|
|
|
| ','
|
|
|
|
;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
expr:
|
2014-06-15 00:30:18 +08:00
|
|
|
variable { $$.u.ast = $1.u.ast; }
|
|
|
|
| expr_without_variable { $$.u.ast = $1.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2012-07-22 03:05:46 +08:00
|
|
|
parenthesis_expr:
|
2014-06-19 19:57:29 +08:00
|
|
|
'(' expr ')' { $$.u.ast = $2.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2007-09-27 08:32:40 +08:00
|
|
|
variable_class_name:
|
2014-06-19 19:57:29 +08:00
|
|
|
dereferencable { $$.u.ast = $1.u.ast; }
|
2007-09-27 08:32:40 +08:00
|
|
|
;
|
2001-12-14 06:21:50 +08:00
|
|
|
|
2014-05-31 05:44:30 +08:00
|
|
|
dereferencable:
|
2014-06-07 19:06:53 +08:00
|
|
|
variable { $$.u.ast = $1.u.ast; }
|
2014-06-15 00:30:18 +08:00
|
|
|
| '(' expr ')' { $$.u.ast = $2.u.ast; }
|
2014-06-19 19:57:29 +08:00
|
|
|
| dereferencable_scalar { $$.u.ast = $1.u.ast; }
|
2014-05-31 05:44:30 +08:00
|
|
|
;
|
|
|
|
|
2014-05-31 23:18:37 +08:00
|
|
|
callable_expr:
|
2014-06-07 19:06:53 +08:00
|
|
|
callable_variable { $$.u.ast = $1.u.ast; }
|
2014-06-15 00:30:18 +08:00
|
|
|
| '(' expr ')' { $$.u.ast = $2.u.ast; }
|
2014-06-19 19:57:29 +08:00
|
|
|
| dereferencable_scalar { $$.u.ast = $1.u.ast; }
|
2014-05-31 23:18:37 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
callable_variable:
|
2014-05-31 06:02:51 +08:00
|
|
|
simple_variable
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_VAR, $1.u.ast); }
|
2014-05-31 06:02:51 +08:00
|
|
|
| dereferencable '[' dim_offset ']'
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_DIM, $1.u.ast, $3.u.ast); }
|
2014-05-31 06:02:51 +08:00
|
|
|
| dereferencable '{' expr '}'
|
2014-06-15 00:30:18 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_DIM, $1.u.ast, $3.u.ast); }
|
2014-07-13 19:11:55 +08:00
|
|
|
| dereferencable T_OBJECT_OPERATOR member_name argument_list
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ternary(ZEND_AST_METHOD_CALL, $1.u.ast, $3.u.ast, $4.u.ast); }
|
|
|
|
| function_call { $$.u.ast = $1.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
2006-05-12 05:07:39 +08:00
|
|
|
|
2014-05-31 05:36:30 +08:00
|
|
|
variable:
|
2014-06-07 19:06:53 +08:00
|
|
|
callable_variable
|
|
|
|
{ $$.u.ast = $1.u.ast; }
|
|
|
|
| static_member
|
|
|
|
{ $$.u.ast = $1.u.ast; }
|
2014-06-01 03:00:11 +08:00
|
|
|
| dereferencable T_OBJECT_OPERATOR member_name
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_PROP, $1.u.ast, $3.u.ast); }
|
2014-05-31 04:33:03 +08:00
|
|
|
;
|
|
|
|
|
2014-05-30 22:31:10 +08:00
|
|
|
simple_variable:
|
2014-06-07 19:06:53 +08:00
|
|
|
T_VARIABLE
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = $1.u.ast; }
|
2014-06-07 19:06:53 +08:00
|
|
|
| '$' '{' expr '}'
|
2014-06-15 00:30:18 +08:00
|
|
|
{ $$.u.ast = $3.u.ast; }
|
2014-06-07 19:06:53 +08:00
|
|
|
| '$' simple_variable
|
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_VAR, $2.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2014-05-31 05:44:30 +08:00
|
|
|
static_member:
|
2014-06-07 19:06:53 +08:00
|
|
|
class_name T_PAAMAYIM_NEKUDOTAYIM simple_variable
|
2014-07-20 05:30:07 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_STATIC_PROP, $1.u.ast, $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM simple_variable
|
2014-06-19 19:57:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_STATIC_PROP, $1.u.ast, $3.u.ast); }
|
2014-05-31 05:44:30 +08:00
|
|
|
;
|
|
|
|
|
2014-05-31 06:37:03 +08:00
|
|
|
new_variable:
|
|
|
|
simple_variable
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_VAR, $1.u.ast); }
|
|
|
|
| new_variable '[' dim_offset ']'
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_DIM, $1.u.ast, $3.u.ast); }
|
|
|
|
| new_variable '{' expr '}'
|
2014-06-15 00:30:18 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_DIM, $1.u.ast, $3.u.ast); }
|
2014-06-01 03:00:11 +08:00
|
|
|
| new_variable T_OBJECT_OPERATOR member_name
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_PROP, $1.u.ast, $3.u.ast); }
|
2014-06-06 23:05:14 +08:00
|
|
|
| class_name T_PAAMAYIM_NEKUDOTAYIM simple_variable
|
2014-07-20 05:30:07 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_STATIC_PROP, $1.u.ast, $3.u.ast); }
|
2014-06-06 23:05:14 +08:00
|
|
|
| new_variable T_PAAMAYIM_NEKUDOTAYIM simple_variable
|
2014-06-07 19:06:53 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_STATIC_PROP, $1.u.ast, $3.u.ast); }
|
2014-05-31 06:37:03 +08:00
|
|
|
;
|
2014-05-31 05:44:30 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
dim_offset:
|
2014-06-07 19:06:53 +08:00
|
|
|
/* empty */ { $$.u.ast = NULL; }
|
2014-06-15 00:30:18 +08:00
|
|
|
| expr { $$.u.ast = $1.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2014-06-01 02:58:44 +08:00
|
|
|
member_name:
|
2014-07-27 02:54:41 +08:00
|
|
|
T_STRING { $$.u.ast = $1.u.ast; }
|
2014-06-15 00:30:18 +08:00
|
|
|
| '{' expr '}' { $$.u.ast = $2.u.ast; }
|
2014-06-07 19:06:53 +08:00
|
|
|
| simple_variable { $$.u.ast = zend_ast_create_unary(ZEND_AST_VAR, $1.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
assignment_list:
|
|
|
|
assignment_list ',' assignment_list_element
|
2014-06-22 01:26:17 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
| assignment_list_element
|
2014-06-22 01:26:17 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_LIST, $1.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
assignment_list_element:
|
2014-06-07 19:06:53 +08:00
|
|
|
variable { $$.u.ast = $1.u.ast; }
|
|
|
|
| T_LIST '(' assignment_list ')' { $$.u.ast = $3.u.ast; }
|
|
|
|
| /* empty */ { $$.u.ast = NULL; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
array_pair_list:
|
2014-06-19 19:57:29 +08:00
|
|
|
/* empty */ { $$.u.ast = zend_ast_create_dynamic(ZEND_AST_ARRAY); }
|
|
|
|
| non_empty_array_pair_list possible_comma { $$.u.ast = $1.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
non_empty_array_pair_list:
|
2014-06-19 19:57:29 +08:00
|
|
|
non_empty_array_pair_list ',' array_pair
|
2014-06-22 01:26:17 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $3.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| array_pair
|
2014-06-22 01:26:17 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_ARRAY, $1.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
array_pair:
|
|
|
|
expr T_DOUBLE_ARROW expr
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_ARRAY_ELEM, $3.u.ast, $1.u.ast); }
|
|
|
|
| expr { $$.u.ast = zend_ast_create_binary(ZEND_AST_ARRAY_ELEM, $1.u.ast, NULL); }
|
|
|
|
| expr T_DOUBLE_ARROW '&' variable
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ex(2, ZEND_AST_ARRAY_ELEM, 1, $4.u.ast, $1.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| '&' variable
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ex(2, ZEND_AST_ARRAY_ELEM, 1, $2.u.ast, NULL); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
encaps_list:
|
2014-06-07 19:06:53 +08:00
|
|
|
encaps_list encaps_var
|
2014-06-22 02:03:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $2.u.ast); }
|
|
|
|
| encaps_list T_ENCAPSED_AND_WHITESPACE
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add($1.u.ast, $2.u.ast); }
|
2014-06-22 02:03:29 +08:00
|
|
|
| encaps_var
|
|
|
|
{ $$.u.ast = zend_ast_create_dynamic_and_add(ZEND_AST_ENCAPS_LIST, $1.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| T_ENCAPSED_AND_WHITESPACE encaps_var
|
2014-06-22 02:03:29 +08:00
|
|
|
{ $$.u.ast = zend_ast_dynamic_add(zend_ast_create_dynamic_and_add(
|
2014-07-27 02:54:41 +08:00
|
|
|
ZEND_AST_ENCAPS_LIST, $1.u.ast), $2.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
encaps_var:
|
2014-06-07 19:06:53 +08:00
|
|
|
T_VARIABLE
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_VAR, $1.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| T_VARIABLE '[' encaps_var_offset ']'
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_DIM,
|
2014-07-27 02:54:41 +08:00
|
|
|
zend_ast_create_unary(ZEND_AST_VAR, $1.u.ast), $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| T_VARIABLE T_OBJECT_OPERATOR T_STRING
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_PROP,
|
2014-07-27 02:54:41 +08:00
|
|
|
zend_ast_create_unary(ZEND_AST_VAR, $1.u.ast), $3.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| T_DOLLAR_OPEN_CURLY_BRACES expr '}'
|
2014-06-15 00:30:18 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_VAR, $2.u.ast); }
|
2014-06-22 02:11:31 +08:00
|
|
|
| T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '}'
|
2014-07-27 02:54:41 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_VAR, $2.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '[' expr ']' '}'
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_DIM,
|
2014-07-27 02:54:41 +08:00
|
|
|
zend_ast_create_unary(ZEND_AST_VAR, $2.u.ast), $4.u.ast); }
|
2014-06-07 19:06:53 +08:00
|
|
|
| T_CURLY_OPEN variable '}' { $$.u.ast = $2.u.ast; }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
encaps_var_offset:
|
2014-07-27 02:54:41 +08:00
|
|
|
T_STRING { $$.u.ast = $1.u.ast; }
|
|
|
|
| T_NUM_STRING { $$.u.ast = $1.u.ast; }
|
|
|
|
| T_VARIABLE { $$.u.ast = zend_ast_create_unary(ZEND_AST_VAR, $1.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
internal_functions_in_yacc:
|
2014-06-19 19:57:29 +08:00
|
|
|
T_ISSET '(' isset_variables ')' { $$.u.ast = $3.u.ast; }
|
|
|
|
| T_EMPTY '(' expr ')' { $$.u.ast = zend_ast_create_unary(ZEND_AST_EMPTY, $3.u.ast); }
|
|
|
|
| T_INCLUDE expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ex(1, ZEND_INCLUDE_OR_EVAL, ZEND_INCLUDE, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_INCLUDE_ONCE expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ex(1, ZEND_INCLUDE_OR_EVAL, ZEND_INCLUDE_ONCE, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_EVAL '(' expr ')'
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ex(1, ZEND_INCLUDE_OR_EVAL, ZEND_EVAL, $3.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_REQUIRE expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ex(1, ZEND_INCLUDE_OR_EVAL, ZEND_REQUIRE, $2.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| T_REQUIRE_ONCE expr
|
2014-07-10 21:18:08 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_ex(1, ZEND_INCLUDE_OR_EVAL, ZEND_REQUIRE_ONCE, $2.u.ast); }
|
1999-04-08 02:10:10 +08:00
|
|
|
;
|
|
|
|
|
2001-03-20 03:31:14 +08:00
|
|
|
isset_variables:
|
2014-06-19 19:57:29 +08:00
|
|
|
isset_variable { $$.u.ast = $1.u.ast; }
|
|
|
|
| isset_variables ',' isset_variable
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(ZEND_AST_AND, $1.u.ast, $3.u.ast); }
|
2012-04-12 17:54:52 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
isset_variable:
|
2014-06-19 19:57:29 +08:00
|
|
|
expr { $$.u.ast = zend_ast_create_unary(ZEND_AST_ISSET, $1.u.ast); }
|
2006-05-12 05:07:39 +08:00
|
|
|
;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-06-02 20:13:11 +08:00
|
|
|
class_constant:
|
2014-06-19 19:57:29 +08:00
|
|
|
class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(
|
2014-07-27 02:54:41 +08:00
|
|
|
ZEND_AST_CLASS_CONST, $1.u.ast, $3.u.ast); }
|
2014-06-19 19:57:29 +08:00
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING
|
|
|
|
{ $$.u.ast = zend_ast_create_binary(
|
2014-07-27 02:54:41 +08:00
|
|
|
ZEND_AST_CLASS_CONST, $1.u.ast, $3.u.ast); }
|
2003-03-10 04:53:57 +08:00
|
|
|
;
|
|
|
|
|
2013-01-19 08:00:47 +08:00
|
|
|
class_name_scalar:
|
2014-06-19 19:57:29 +08:00
|
|
|
class_name T_PAAMAYIM_NEKUDOTAYIM T_CLASS
|
2014-07-20 05:30:07 +08:00
|
|
|
{ $$.u.ast = zend_ast_create_unary(ZEND_AST_RESOLVE_CLASS_NAME, $1.u.ast); }
|
2013-01-19 08:00:47 +08:00
|
|
|
;
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
%%
|
|
|
|
|
2011-06-24 07:00:53 +08:00
|
|
|
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
|
|
|
|
quotes and backslashes, so that it's suitable for yyerror. The
|
|
|
|
heuristic is that double-quoting is unnecessary unless the string
|
|
|
|
contains an apostrophe, a comma, or backslash (other than
|
|
|
|
backslash-backslash). YYSTR is taken from yytname. If YYRES is
|
|
|
|
null, do not copy; instead, return the length of what the result
|
|
|
|
would have been. */
|
|
|
|
static YYSIZE_T zend_yytnamerr(char *yyres, const char *yystr)
|
|
|
|
{
|
|
|
|
if (!yyres) {
|
|
|
|
return yystrlen(yystr);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
TSRMLS_FETCH();
|
|
|
|
if (CG(parse_error) == 0) {
|
2011-06-24 08:38:53 +08:00
|
|
|
char buffer[120];
|
|
|
|
const unsigned char *end, *str, *tok1 = NULL, *tok2 = NULL;
|
2011-06-24 07:00:53 +08:00
|
|
|
unsigned int len = 0, toklen = 0, yystr_len;
|
|
|
|
|
|
|
|
CG(parse_error) = 1;
|
|
|
|
|
|
|
|
if (LANG_SCNG(yy_text)[0] == 0 &&
|
|
|
|
LANG_SCNG(yy_leng) == 1 &&
|
2012-06-26 18:42:33 +08:00
|
|
|
memcmp(yystr, "\"end of file\"", sizeof("\"end of file\"") - 1) == 0) {
|
2011-06-24 08:38:53 +08:00
|
|
|
yystpcpy(yyres, "end of file");
|
|
|
|
return sizeof("end of file")-1;
|
2011-06-24 07:00:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
str = LANG_SCNG(yy_text);
|
|
|
|
end = memchr(str, '\n', LANG_SCNG(yy_leng));
|
|
|
|
yystr_len = yystrlen(yystr);
|
|
|
|
|
|
|
|
if ((tok1 = memchr(yystr, '(', yystr_len)) != NULL
|
|
|
|
&& (tok2 = zend_memrchr(yystr, ')', yystr_len)) != NULL) {
|
|
|
|
toklen = (tok2 - tok1) + 1;
|
|
|
|
} else {
|
|
|
|
tok1 = tok2 = NULL;
|
|
|
|
toklen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end == NULL) {
|
|
|
|
len = LANG_SCNG(yy_leng) > 30 ? 30 : LANG_SCNG(yy_leng);
|
|
|
|
} else {
|
|
|
|
len = (end - str) > 30 ? 30 : (end - str);
|
|
|
|
}
|
|
|
|
if (toklen) {
|
|
|
|
snprintf(buffer, sizeof(buffer), "'%.*s' %.*s", len, str, toklen, tok1);
|
|
|
|
} else {
|
|
|
|
snprintf(buffer, sizeof(buffer), "'%.*s'", len, str);
|
|
|
|
}
|
2011-06-24 08:38:53 +08:00
|
|
|
yystpcpy(yyres, buffer);
|
|
|
|
return len + (toklen ? toklen + 1 : 0) + 2;
|
2011-06-24 07:00:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*yystr == '"') {
|
|
|
|
YYSIZE_T yyn = 0;
|
|
|
|
const char *yyp = yystr;
|
|
|
|
|
|
|
|
for (; *++yyp != '"'; ++yyn) {
|
|
|
|
yyres[yyn] = *yyp;
|
|
|
|
}
|
|
|
|
yyres[yyn] = '\0';
|
|
|
|
return yyn;
|
|
|
|
}
|
2011-06-24 08:38:53 +08:00
|
|
|
yystpcpy(yyres, yystr);
|
|
|
|
return strlen(yystr);
|
2011-06-24 07:00:53 +08:00
|
|
|
}
|
|
|
|
|
2003-02-01 09:49:15 +08:00
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|