Searched refs:zend_ast_create (Results 1 – 4 of 4) sorted by relevance
/PHP-7.1/Zend/ |
H A D | zend_language_parser.y | 316 { $$ = zend_ast_create(ZEND_AST_HALT_COMPILER, 690 { $$ = zend_ast_create(ZEND_AST_GLOBAL, zend_ast_create(ZEND_AST_VAR, $1)); } 856 $$ = zend_ast_create(ZEND_AST_NEW, decl, $3); 1124 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1160 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1232 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1234 { $$ = zend_ast_create(ZEND_AST_DIM, 1237 { $$ = zend_ast_create(ZEND_AST_PROP, 1240 { $$ = zend_ast_create(ZEND_AST_VAR, $2); } 1242 { $$ = zend_ast_create(ZEND_AST_VAR, $2); } [all …]
|
H A D | zend_ast.h | 196 ZEND_API zend_ast *zend_ast_create(zend_ast_kind kind, ...);
|
H A D | zend_ast.c | 135 ZEND_API zend_ast *zend_ast_create(zend_ast_kind kind, ...) { in zend_ast_create() function
|
H A D | zend_compile.c | 2684 zend_ast *assign_ast = zend_ast_create(ZEND_AST_ASSIGN, var_ast, in zend_emit_assign_znode() 3091 zend_ast *assign_ast = zend_ast_create(ZEND_AST_ASSIGN_REF, var_ast, in zend_emit_assign_ref_znode() 3993 zend_ast_create(ZEND_AST_VAR, zend_ast_create_znode(&name_node)), in zend_compile_global_var() 7230 call_ast = zend_ast_create(ZEND_AST_CALL, name_ast, args_ast); in zend_compile_shell_exec()
|
Completed in 61 milliseconds