Searched refs:ZEND_AST_VAR (Results 1 – 4 of 4) sorted by relevance
/PHP-7.4/Zend/ |
H A D | zend_language_parser.y | 1153 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1189 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1205 | simple_variable { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1211 | simple_variable { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1263 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1266 zend_ast_create(ZEND_AST_VAR, $1), $3); } 1269 zend_ast_create(ZEND_AST_VAR, $1), $3); } 1271 { $$ = zend_ast_create(ZEND_AST_VAR, $2); } 1273 { $$ = zend_ast_create(ZEND_AST_VAR, $2); } 1276 zend_ast_create(ZEND_AST_VAR, $2), $4); } [all …]
|
H A D | zend_ast.h | 71 ZEND_AST_VAR = 1 << ZEND_AST_NUM_CHILDREN_SHIFT, enumerator
|
H A D | zend_compile.c | 2765 case ZEND_AST_VAR: in zend_compile_assign() 2866 if ((target_ast->kind != ZEND_AST_VAR in zend_compile_assign_ref() 2928 case ZEND_AST_VAR: in zend_compile_compound_assign() 3043 if (arg->kind == ZEND_AST_VAR) { in zend_compile_args() 4169 case ZEND_AST_VAR: in zend_compile_unset() 5591 if (ast->kind == ZEND_AST_VAR) { in find_implicit_binds_recursively() 7642 case ZEND_AST_VAR: in zend_compile_assign_coalesce() 7849 case ZEND_AST_VAR: in zend_compile_isset_or_empty() 8609 case ZEND_AST_VAR: in zend_compile_expr() 8732 case ZEND_AST_VAR: in zend_compile_var() [all …]
|
H A D | zend_ast.c | 828 if (EXPECTED(ast->kind >= ZEND_AST_VAR)) { in zend_ast_destroy() 1078 } else if (ast->kind == ZEND_AST_VAR) { in zend_ast_export_var() 1112 } else if (ast->kind == ZEND_AST_VAR && in zend_ast_export_encaps_list() 1568 case ZEND_AST_VAR: in zend_ast_export_ex()
|
Completed in 39 milliseconds