Lines Matching refs:ast

52 %destructor { zend_ast_destroy($$); } <ast>
88 %token <ast> T_LNUMBER "integer number (T_LNUMBER)"
89 %token <ast> T_DNUMBER "floating-point number (T_DNUMBER)"
90 %token <ast> T_STRING "identifier (T_STRING)"
91 %token <ast> T_VARIABLE "variable (T_VARIABLE)"
92 %token <ast> T_INLINE_HTML
93 %token <ast> T_ENCAPSED_AND_WHITESPACE "quoted-string and whitespace (T_ENCAPSED_AND_WHITESPACE)"
94 %token <ast> T_CONSTANT_ENCAPSED_STRING "quoted-string (T_CONSTANT_ENCAPSED_STRING)"
95 %token <ast> T_STRING_VARNAME "variable name (T_STRING_VARNAME)"
96 %token <ast> T_NUM_STRING "number (T_NUM_STRING)"
230 %type <ast> top_statement namespace_name name statement function_declaration_statement
231 %type <ast> class_declaration_statement trait_declaration_statement
232 %type <ast> interface_declaration_statement interface_extends_list
233 %type <ast> group_use_declaration inline_use_declarations inline_use_declaration
234 %type <ast> mixed_group_use_declaration use_declaration unprefixed_use_declaration
235 %type <ast> unprefixed_use_declarations const_decl inner_statement
236 %type <ast> expr optional_expr while_statement for_statement foreach_variable
237 %type <ast> foreach_statement declare_statement finally_statement unset_variable variable
238 %type <ast> extends_from parameter optional_type argument global_var
239 %type <ast> static_var class_statement trait_adaptation trait_precedence trait_alias
240 %type <ast> absolute_trait_method_reference trait_method_reference property echo_expr
241 %type <ast> new_expr anonymous_class class_name class_name_reference simple_variable
242 %type <ast> internal_functions_in_yacc
243 %type <ast> exit_expr scalar backticks_expr lexical_var function_call member_name property_name
244 %type <ast> variable_class_name dereferencable_scalar constant dereferencable
245 %type <ast> callable_expr callable_variable static_member new_variable
246 %type <ast> encaps_var encaps_var_offset isset_variables
247 %type <ast> top_statement_list use_declarations const_list inner_statement_list if_stmt
248 %type <ast> alt_if_stmt for_exprs switch_case_list global_var_list static_var_list
249 %type <ast> echo_expr_list unset_variables catch_name_list catch_list parameter_list class_statemen…
250 %type <ast> implements_list case_list if_stmt_without_else
251 %type <ast> non_empty_parameter_list argument_list non_empty_argument_list property_list
252 %type <ast> class_const_list class_const_decl name_list trait_adaptations method_body non_empty_for…
253 %type <ast> ctor_arguments alt_if_stmt_without_else trait_adaptation_list lexical_vars
254 %type <ast> lexical_var_list encaps_list
255 %type <ast> array_pair non_empty_array_pair_list array_pair_list possible_array_pair
256 %type <ast> isset_variable type return_type type_expr
257 %type <ast> identifier
258 %type <ast> inline_function
270 top_statement_list { CG(ast) = $1; }