Searched refs:ZEND_AST_VAR (Results 1 – 4 of 4) sorted by relevance
/PHP-7.1/Zend/ |
H A D | zend_language_parser.y | 1124 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1160 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1176 | simple_variable { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1182 | simple_variable { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1232 { $$ = zend_ast_create(ZEND_AST_VAR, $1); } 1235 zend_ast_create(ZEND_AST_VAR, $1), $3); } 1238 zend_ast_create(ZEND_AST_VAR, $1), $3); } 1240 { $$ = zend_ast_create(ZEND_AST_VAR, $2); } 1242 { $$ = zend_ast_create(ZEND_AST_VAR, $2); } 1245 zend_ast_create(ZEND_AST_VAR, $2), $4); } [all …]
|
H A D | zend_ast.h | 66 ZEND_AST_VAR = 1 << ZEND_AST_NUM_CHILDREN_SHIFT, enumerator
|
H A D | zend_compile.c | 2420 return ast->kind == ZEND_AST_VAR || ast->kind == ZEND_AST_DIM in zend_is_variable() 2995 case ZEND_AST_VAR: in zend_compile_assign() 3063 if ((target_ast->kind != ZEND_AST_VAR in zend_compile_assign_ref() 3110 case ZEND_AST_VAR: in zend_compile_compound_assign() 4059 case ZEND_AST_VAR: in zend_compile_unset() 4548 } else if (value_ast->kind == ZEND_AST_VAR && in zend_compile_foreach() 7163 case ZEND_AST_VAR: in zend_compile_isset_or_empty() 7203 if (expr_ast->kind == ZEND_AST_VAR) { in zend_compile_silence() 7908 case ZEND_AST_VAR: in zend_compile_expr() 8024 case ZEND_AST_VAR: in zend_compile_var() [all …]
|
H A D | zend_ast.c | 747 } else if (ast->kind == ZEND_AST_VAR) { in zend_ast_export_var() 781 } else if (ast->kind == ZEND_AST_VAR && in zend_ast_export_encaps_list() 1204 case ZEND_AST_VAR: in zend_ast_export_ex()
|
Completed in 33 milliseconds