2017-11-23 15:33:47 +00:00
|
|
|
%{
|
2018-01-26 13:24:56 +00:00
|
|
|
package php5
|
2017-11-23 15:33:47 +00:00
|
|
|
|
|
|
|
import (
|
2018-01-31 10:55:50 +00:00
|
|
|
"strconv"
|
2018-01-24 16:42:23 +00:00
|
|
|
|
2020-08-17 17:31:04 +00:00
|
|
|
"github.com/z7zmey/php-parser/pkg/ast"
|
|
|
|
"github.com/z7zmey/php-parser/pkg/token"
|
2017-11-23 15:33:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%union{
|
2020-05-13 17:18:53 +00:00
|
|
|
node ast.Vertex
|
2020-08-17 17:31:04 +00:00
|
|
|
token *token.Token
|
2020-05-13 17:18:53 +00:00
|
|
|
list []ast.Vertex
|
2017-11-23 15:33:47 +00:00
|
|
|
}
|
|
|
|
|
2017-11-24 01:36:58 +00:00
|
|
|
%token <token> T_INCLUDE
|
|
|
|
%token <token> T_INCLUDE_ONCE
|
|
|
|
%token <token> T_EXIT
|
|
|
|
%token <token> T_IF
|
|
|
|
%token <token> T_LNUMBER
|
|
|
|
%token <token> T_DNUMBER
|
|
|
|
%token <token> T_STRING
|
|
|
|
%token <token> T_STRING_VARNAME
|
|
|
|
%token <token> T_VARIABLE
|
|
|
|
%token <token> T_NUM_STRING
|
|
|
|
%token <token> T_INLINE_HTML
|
|
|
|
%token <token> T_CHARACTER
|
|
|
|
%token <token> T_BAD_CHARACTER
|
|
|
|
%token <token> T_ENCAPSED_AND_WHITESPACE
|
|
|
|
%token <token> T_CONSTANT_ENCAPSED_STRING
|
|
|
|
%token <token> T_ECHO
|
|
|
|
%token <token> T_DO
|
|
|
|
%token <token> T_WHILE
|
|
|
|
%token <token> T_ENDWHILE
|
|
|
|
%token <token> T_FOR
|
|
|
|
%token <token> T_ENDFOR
|
|
|
|
%token <token> T_FOREACH
|
|
|
|
%token <token> T_ENDFOREACH
|
|
|
|
%token <token> T_DECLARE
|
|
|
|
%token <token> T_ENDDECLARE
|
|
|
|
%token <token> T_AS
|
|
|
|
%token <token> T_SWITCH
|
|
|
|
%token <token> T_ENDSWITCH
|
|
|
|
%token <token> T_CASE
|
|
|
|
%token <token> T_DEFAULT
|
|
|
|
%token <token> T_BREAK
|
|
|
|
%token <token> T_CONTINUE
|
|
|
|
%token <token> T_GOTO
|
|
|
|
%token <token> T_FUNCTION
|
2019-12-24 14:16:35 +00:00
|
|
|
%token <token> T_FN
|
2017-11-24 01:36:58 +00:00
|
|
|
%token <token> T_CONST
|
|
|
|
%token <token> T_RETURN
|
|
|
|
%token <token> T_TRY
|
|
|
|
%token <token> T_CATCH
|
|
|
|
%token <token> T_FINALLY
|
|
|
|
%token <token> T_THROW
|
|
|
|
%token <token> T_USE
|
|
|
|
%token <token> T_INSTEADOF
|
|
|
|
%token <token> T_GLOBAL
|
|
|
|
%token <token> T_VAR
|
|
|
|
%token <token> T_UNSET
|
|
|
|
%token <token> T_ISSET
|
|
|
|
%token <token> T_EMPTY
|
|
|
|
%token <token> T_HALT_COMPILER
|
|
|
|
%token <token> T_CLASS
|
|
|
|
%token <token> T_TRAIT
|
|
|
|
%token <token> T_INTERFACE
|
|
|
|
%token <token> T_EXTENDS
|
|
|
|
%token <token> T_IMPLEMENTS
|
|
|
|
%token <token> T_OBJECT_OPERATOR
|
|
|
|
%token <token> T_DOUBLE_ARROW
|
|
|
|
%token <token> T_LIST
|
|
|
|
%token <token> T_ARRAY
|
|
|
|
%token <token> T_CALLABLE
|
|
|
|
%token <token> T_CLASS_C
|
|
|
|
%token <token> T_TRAIT_C
|
|
|
|
%token <token> T_METHOD_C
|
|
|
|
%token <token> T_FUNC_C
|
|
|
|
%token <token> T_LINE
|
|
|
|
%token <token> T_FILE
|
|
|
|
%token <token> T_COMMENT
|
|
|
|
%token <token> T_DOC_COMMENT
|
|
|
|
%token <token> T_OPEN_TAG
|
|
|
|
%token <token> T_OPEN_TAG_WITH_ECHO
|
|
|
|
%token <token> T_CLOSE_TAG
|
|
|
|
%token <token> T_WHITESPACE
|
|
|
|
%token <token> T_START_HEREDOC
|
|
|
|
%token <token> T_END_HEREDOC
|
|
|
|
%token <token> T_DOLLAR_OPEN_CURLY_BRACES
|
|
|
|
%token <token> T_CURLY_OPEN
|
|
|
|
%token <token> T_PAAMAYIM_NEKUDOTAYIM
|
|
|
|
%token <token> T_NAMESPACE
|
|
|
|
%token <token> T_NS_C
|
|
|
|
%token <token> T_DIR
|
|
|
|
%token <token> T_NS_SEPARATOR
|
|
|
|
%token <token> T_ELLIPSIS
|
2017-11-29 21:53:45 +00:00
|
|
|
%token <token> T_EVAL
|
|
|
|
%token <token> T_REQUIRE
|
|
|
|
%token <token> T_REQUIRE_ONCE
|
|
|
|
%token <token> T_LOGICAL_OR
|
|
|
|
%token <token> T_LOGICAL_XOR
|
|
|
|
%token <token> T_LOGICAL_AND
|
|
|
|
%token <token> T_INSTANCEOF
|
|
|
|
%token <token> T_NEW
|
|
|
|
%token <token> T_CLONE
|
|
|
|
%token <token> T_ELSEIF
|
|
|
|
%token <token> T_ELSE
|
|
|
|
%token <token> T_ENDIF
|
|
|
|
%token <token> T_PRINT
|
|
|
|
%token <token> T_YIELD
|
|
|
|
%token <token> T_STATIC
|
|
|
|
%token <token> T_ABSTRACT
|
|
|
|
%token <token> T_FINAL
|
|
|
|
%token <token> T_PRIVATE
|
|
|
|
%token <token> T_PROTECTED
|
|
|
|
%token <token> T_PUBLIC
|
2017-12-31 18:53:55 +00:00
|
|
|
%token <token> T_INC
|
|
|
|
%token <token> T_DEC
|
|
|
|
%token <token> T_YIELD_FROM
|
|
|
|
%token <token> T_INT_CAST
|
|
|
|
%token <token> T_DOUBLE_CAST
|
|
|
|
%token <token> T_STRING_CAST
|
|
|
|
%token <token> T_ARRAY_CAST
|
|
|
|
%token <token> T_OBJECT_CAST
|
|
|
|
%token <token> T_BOOL_CAST
|
|
|
|
%token <token> T_UNSET_CAST
|
2018-01-29 14:11:45 +00:00
|
|
|
%token <token> T_COALESCE
|
|
|
|
%token <token> T_SPACESHIP
|
|
|
|
%token <token> T_NOELSE
|
2018-05-27 15:02:58 +00:00
|
|
|
%token <token> T_PLUS_EQUAL
|
|
|
|
%token <token> T_MINUS_EQUAL
|
|
|
|
%token <token> T_MUL_EQUAL
|
|
|
|
%token <token> T_POW_EQUAL
|
|
|
|
%token <token> T_DIV_EQUAL
|
|
|
|
%token <token> T_CONCAT_EQUAL
|
|
|
|
%token <token> T_MOD_EQUAL
|
|
|
|
%token <token> T_AND_EQUAL
|
|
|
|
%token <token> T_OR_EQUAL
|
|
|
|
%token <token> T_XOR_EQUAL
|
|
|
|
%token <token> T_SL_EQUAL
|
|
|
|
%token <token> T_SR_EQUAL
|
2019-12-24 14:16:35 +00:00
|
|
|
%token <token> T_COALESCE_EQUAL
|
2018-05-27 15:02:58 +00:00
|
|
|
%token <token> T_BOOLEAN_OR
|
|
|
|
%token <token> T_BOOLEAN_AND
|
|
|
|
%token <token> T_POW
|
|
|
|
%token <token> T_SL
|
|
|
|
%token <token> T_SR
|
|
|
|
%token <token> T_IS_IDENTICAL
|
|
|
|
%token <token> T_IS_NOT_IDENTICAL
|
|
|
|
%token <token> T_IS_EQUAL
|
|
|
|
%token <token> T_IS_NOT_EQUAL
|
|
|
|
%token <token> T_IS_SMALLER_OR_EQUAL
|
|
|
|
%token <token> T_IS_GREATER_OR_EQUAL
|
2017-12-03 21:29:17 +00:00
|
|
|
%token <token> '"'
|
|
|
|
%token <token> '`'
|
2017-12-07 09:46:25 +00:00
|
|
|
%token <token> '{'
|
|
|
|
%token <token> '}'
|
2017-12-08 14:54:44 +00:00
|
|
|
%token <token> ';'
|
2017-12-31 18:53:55 +00:00
|
|
|
%token <token> ':'
|
2017-12-16 18:19:17 +00:00
|
|
|
%token <token> '('
|
|
|
|
%token <token> ')'
|
|
|
|
%token <token> '['
|
|
|
|
%token <token> ']'
|
2017-12-31 18:53:55 +00:00
|
|
|
%token <token> '?'
|
|
|
|
%token <token> '&'
|
|
|
|
%token <token> '-'
|
|
|
|
%token <token> '+'
|
|
|
|
%token <token> '!'
|
|
|
|
%token <token> '~'
|
|
|
|
%token <token> '@'
|
|
|
|
%token <token> '$'
|
2018-05-27 15:02:58 +00:00
|
|
|
%token <token> ','
|
|
|
|
%token <token> '|'
|
|
|
|
%token <token> '='
|
|
|
|
%token <token> '^'
|
|
|
|
%token <token> '*'
|
|
|
|
%token <token> '/'
|
|
|
|
%token <token> '%'
|
|
|
|
%token <token> '<'
|
|
|
|
%token <token> '>'
|
2018-05-27 19:15:27 +00:00
|
|
|
%token <token> '.'
|
2017-11-23 15:33:47 +00:00
|
|
|
|
2018-01-29 14:11:45 +00:00
|
|
|
%left T_INCLUDE T_INCLUDE_ONCE T_EVAL T_REQUIRE T_REQUIRE_ONCE
|
|
|
|
%left ','
|
|
|
|
%left T_LOGICAL_OR
|
|
|
|
%left T_LOGICAL_XOR
|
|
|
|
%left T_LOGICAL_AND
|
|
|
|
%right T_PRINT
|
|
|
|
%right T_YIELD
|
|
|
|
%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
|
|
|
|
%left '?' ':'
|
|
|
|
%left T_BOOLEAN_OR
|
|
|
|
%left T_BOOLEAN_AND
|
|
|
|
%left '|'
|
|
|
|
%left '^'
|
|
|
|
%left '&'
|
|
|
|
%nonassoc T_IS_EQUAL T_IS_NOT_EQUAL T_IS_IDENTICAL T_IS_NOT_IDENTICAL
|
|
|
|
%nonassoc '<' T_IS_SMALLER_OR_EQUAL '>' T_IS_GREATER_OR_EQUAL
|
|
|
|
%left T_SL T_SR
|
|
|
|
%left '+' '-' '.'
|
|
|
|
%left '*' '/' '%'
|
|
|
|
%right '!'
|
|
|
|
%nonassoc T_INSTANCEOF
|
|
|
|
%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 '@'
|
|
|
|
%right T_POW
|
|
|
|
%right '['
|
|
|
|
%nonassoc T_NEW T_CLONE
|
|
|
|
%left T_ELSEIF
|
|
|
|
%left T_ELSE
|
|
|
|
%left T_ENDIF
|
|
|
|
%right T_STATIC T_ABSTRACT T_FINAL T_PRIVATE T_PROTECTED T_PUBLIC
|
|
|
|
|
2018-02-03 17:33:22 +00:00
|
|
|
%type <token> function interface_entry
|
2018-06-06 23:25:27 +00:00
|
|
|
%type <token> possible_comma
|
|
|
|
%type <token> case_separator
|
2020-12-04 12:38:47 +00:00
|
|
|
%type <token> is_reference is_variadic
|
2018-02-02 12:36:57 +00:00
|
|
|
|
2018-01-29 14:22:04 +00:00
|
|
|
%type <node> top_statement use_declaration use_function_declaration use_const_declaration common_scalar
|
2018-01-29 14:37:09 +00:00
|
|
|
%type <node> static_class_constant compound_variable reference_variable class_name variable_class_name
|
2018-01-29 19:12:12 +00:00
|
|
|
%type <node> dim_offset expr expr_without_variable r_variable w_variable rw_variable variable base_variable_with_function_calls
|
|
|
|
%type <node> base_variable array_function_dereference function_call inner_statement statement unticked_statement
|
2018-02-12 13:08:08 +00:00
|
|
|
%type <node> statement global_var static_scalar scalar class_constant static_class_name_scalar class_name_scalar
|
2018-02-01 10:35:43 +00:00
|
|
|
%type <node> encaps_var encaps_var encaps_var_offset general_constant isset_variable internal_functions_in_yacc assignment_list_element
|
2018-02-01 18:40:04 +00:00
|
|
|
%type <node> variable_name variable_without_objects dynamic_class_name_reference new_expr class_name_reference static_member
|
2018-02-02 13:01:03 +00:00
|
|
|
%type <node> function_call fully_qualified_class_name combined_scalar combined_scalar_offset general_constant parenthesis_expr
|
2018-02-03 10:09:02 +00:00
|
|
|
%type <node> exit_expr yield_expr function_declaration_statement class_declaration_statement constant_declaration
|
2020-12-04 10:22:06 +00:00
|
|
|
%type <node> else_single new_else_single unset_variable declare_statement parameter_list non_empty_parameter_list
|
2018-02-03 17:33:22 +00:00
|
|
|
%type <node> finally_statement additional_catch unticked_function_declaration_statement unticked_class_declaration_statement
|
2018-05-12 20:10:01 +00:00
|
|
|
%type <node> optional_class_type parameter class_entry_type class_statement class_constant_declaration
|
2018-02-03 22:09:37 +00:00
|
|
|
%type <node> trait_use_statement function_call_parameter trait_adaptation_statement trait_precedence trait_alias
|
2018-02-04 16:51:44 +00:00
|
|
|
%type <node> trait_method_reference_fully_qualified trait_method_reference trait_modifiers member_modifier method
|
2020-09-09 19:53:51 +00:00
|
|
|
%type <node> static_scalar_value static_operation static_var_list global_var_list
|
2020-11-29 19:50:33 +00:00
|
|
|
%type <node> ctor_arguments function_call_parameter_list echo_expr_list class_variable_declaration
|
2020-11-30 21:42:56 +00:00
|
|
|
%type <node> trait_adaptations unset_variables declare_list non_empty_array_pair_list array_pair_list
|
2020-12-01 09:12:56 +00:00
|
|
|
%type <node> switch_case_list non_empty_function_call_parameter_list assignment_list lexical_var_list
|
2020-11-30 21:42:56 +00:00
|
|
|
%type <node> method_body trait_reference_list static_array_pair_list non_empty_static_array_pair_list
|
2020-12-01 10:16:46 +00:00
|
|
|
%type <node> foreach_statement for_statement while_statement isset_variables
|
2020-12-04 10:49:13 +00:00
|
|
|
%type <node> foreach_variable foreach_optional_arg for_expr non_empty_for_expr
|
2020-12-04 12:38:47 +00:00
|
|
|
%type <node> extends_from interface_list trait_list namespace_name
|
|
|
|
%type <node> implements_list use_declarations use_function_declarations use_const_declarations
|
2020-11-22 11:02:36 +00:00
|
|
|
%type <node> interface_extends_list
|
2020-12-04 12:38:47 +00:00
|
|
|
%type <node> lexical_vars
|
2018-01-29 14:11:45 +00:00
|
|
|
|
2020-12-04 12:38:47 +00:00
|
|
|
%type <list> top_statement_list
|
2020-12-01 10:16:46 +00:00
|
|
|
%type <list> inner_statement_list encaps_list
|
2020-12-04 10:49:13 +00:00
|
|
|
%type <list> elseif_list new_elseif_list
|
|
|
|
%type <list> case_list catch_statement additional_catches
|
2020-12-04 10:22:06 +00:00
|
|
|
%type <list> non_empty_additional_catches class_statement_list
|
2020-11-29 19:50:33 +00:00
|
|
|
%type <list> class_statement_list variable_modifiers method_modifiers
|
2020-11-22 11:02:36 +00:00
|
|
|
%type <list> trait_adaptation_list non_empty_trait_adaptation_list
|
2020-11-30 21:42:56 +00:00
|
|
|
%type <list> non_empty_member_modifiers backticks_expr
|
2018-02-03 13:24:00 +00:00
|
|
|
|
2018-02-04 16:51:44 +00:00
|
|
|
%type <list> chaining_dereference chaining_instance_call chaining_method_or_property instance_call variable_property
|
|
|
|
%type <list> method_or_not array_method_dereference object_property object_dim_list dynamic_class_name_variable_property
|
|
|
|
%type <list> dynamic_class_name_variable_properties variable_properties
|
2018-01-29 19:12:12 +00:00
|
|
|
|
2020-12-03 22:13:28 +00:00
|
|
|
%type <list> simple_indirect_reference
|
2018-01-29 14:11:45 +00:00
|
|
|
|
2017-11-23 15:33:47 +00:00
|
|
|
%%
|
|
|
|
|
|
|
|
start:
|
2018-01-29 14:11:45 +00:00
|
|
|
top_statement_list
|
|
|
|
{
|
2020-12-11 07:54:26 +00:00
|
|
|
yylex.(*Parser).currentToken.Value = nil
|
|
|
|
|
2020-12-04 09:02:38 +00:00
|
|
|
yylex.(*Parser).rootNode = &ast.Root{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1),
|
2020-12-04 09:02:38 +00:00
|
|
|
Stmts: $1,
|
|
|
|
EndTkn: yylex.(*Parser).currentToken,
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
2017-11-23 15:33:47 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
top_statement_list:
|
2018-04-09 20:08:29 +00:00
|
|
|
top_statement_list top_statement
|
|
|
|
{
|
|
|
|
if $2 != nil {
|
|
|
|
$$ = append($1, $2)
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
|
|
|
| /* empty */
|
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{}
|
2018-04-09 20:08:29 +00:00
|
|
|
}
|
2017-11-23 15:33:47 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
namespace_name:
|
2018-01-29 14:11:45 +00:00
|
|
|
T_STRING
|
|
|
|
{
|
2020-12-04 12:38:47 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.NameNamePart{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-04 12:38:47 +00:00
|
|
|
StringTkn: $1,
|
|
|
|
Value: $1.Value,
|
2020-08-24 11:20:20 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| namespace_name T_NS_SEPARATOR T_STRING
|
|
|
|
{
|
2020-12-04 12:38:47 +00:00
|
|
|
part := &ast.NameNamePart{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-08-24 11:20:20 +00:00
|
|
|
StringTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-12-04 12:38:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, part)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
2017-11-23 15:33:47 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
top_statement:
|
2018-04-09 20:08:29 +00:00
|
|
|
error
|
|
|
|
{
|
|
|
|
// error
|
|
|
|
$$ = nil
|
|
|
|
}
|
|
|
|
| statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| function_declaration_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| class_declaration_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| T_HALT_COMPILER '(' ')' ';'
|
|
|
|
{
|
2020-08-24 18:41:06 +00:00
|
|
|
$$ = &ast.StmtHaltCompiler{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-08-24 18:41:06 +00:00
|
|
|
HaltCompilerTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
CloseParenthesisTkn: $3,
|
|
|
|
SemiColonTkn: $4,
|
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
| T_NAMESPACE namespace_name ';'
|
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.StmtNamespace{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-08-24 11:20:20 +00:00
|
|
|
NsTkn: $1,
|
|
|
|
Name: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-24 11:20:20 +00:00
|
|
|
},
|
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE namespace_name '{' top_statement_list '}'
|
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.StmtNamespace{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $5),
|
2020-08-24 11:20:20 +00:00
|
|
|
NsTkn: $1,
|
|
|
|
Name: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-24 11:20:20 +00:00
|
|
|
},
|
2020-12-11 15:29:22 +00:00
|
|
|
OpenCurlyBracketTkn: $3,
|
|
|
|
Stmts: $4,
|
|
|
|
CloseCurlyBracketTkn: $5,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE '{' top_statement_list '}'
|
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.StmtNamespace{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-11 15:29:22 +00:00
|
|
|
NsTkn: $1,
|
|
|
|
OpenCurlyBracketTkn: $2,
|
|
|
|
Stmts: $3,
|
|
|
|
CloseCurlyBracketTkn: $4,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_USE use_declarations ';'
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUse{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-08-22 13:59:26 +00:00
|
|
|
UseTkn: $1,
|
2020-12-04 12:38:47 +00:00
|
|
|
UseDeclarations: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_USE T_FUNCTION use_function_declarations ';'
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUse{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-08-22 13:59:26 +00:00
|
|
|
UseTkn: $1,
|
|
|
|
Type: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
2020-12-04 12:38:47 +00:00
|
|
|
UseDeclarations: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
SemiColonTkn: $4,
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_USE T_CONST use_const_declarations ';'
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUse{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-08-22 13:59:26 +00:00
|
|
|
UseTkn: $1,
|
|
|
|
Type: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
2020-12-04 12:38:47 +00:00
|
|
|
UseDeclarations: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
SemiColonTkn: $4,
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| constant_declaration ';'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-08-24 20:28:44 +00:00
|
|
|
$1.(*ast.StmtConstList).SemiColonTkn = $2
|
2020-12-08 00:08:59 +00:00
|
|
|
$1.(*ast.StmtConstList).Position = yylex.(*Parser).builder.NewNodeTokenPosition($1, $2)
|
2018-06-06 23:25:27 +00:00
|
|
|
$$ = $1
|
|
|
|
}
|
2017-11-23 15:33:47 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
use_declarations:
|
2018-02-03 10:09:02 +00:00
|
|
|
use_declarations ',' use_declaration
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 12:38:47 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-04 12:38:47 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| use_declaration
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 12:38:47 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
use_declaration:
|
2018-01-29 14:11:45 +00:00
|
|
|
namespace_name
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-08-22 13:59:26 +00:00
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| namespace_name T_AS T_STRING
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListTokenPosition($1.(*ast.ParserSeparatedList).Items, $3),
|
2020-08-22 13:59:26 +00:00
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
AsTkn: $2,
|
|
|
|
Alias: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-08-22 13:59:26 +00:00
|
|
|
NsSeparatorTkn: $1,
|
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name T_AS T_STRING
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-08-22 13:59:26 +00:00
|
|
|
NsSeparatorTkn: $1,
|
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
AsTkn: $3,
|
|
|
|
Alias: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
2017-11-24 01:36:58 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
use_function_declarations:
|
2018-01-29 14:11:45 +00:00
|
|
|
use_function_declarations ',' use_function_declaration
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 12:38:47 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-04 12:38:47 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
| use_function_declaration
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 12:38:47 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-30 17:04:52 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
use_function_declaration:
|
2018-01-29 14:11:45 +00:00
|
|
|
namespace_name
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-08-22 13:59:26 +00:00
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| namespace_name T_AS T_STRING
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListTokenPosition($1.(*ast.ParserSeparatedList).Items, $3),
|
2020-08-22 13:59:26 +00:00
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
AsTkn: $2,
|
|
|
|
Alias: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-08-22 13:59:26 +00:00
|
|
|
NsSeparatorTkn: $1,
|
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name T_AS T_STRING
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-08-22 13:59:26 +00:00
|
|
|
NsSeparatorTkn: $1,
|
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
AsTkn: $3,
|
|
|
|
Alias: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
use_const_declarations:
|
2018-01-29 14:11:45 +00:00
|
|
|
use_const_declarations ',' use_const_declaration
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 12:38:47 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-04 12:38:47 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
| use_const_declaration
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 12:38:47 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-30 17:04:52 +00:00
|
|
|
;
|
2017-12-01 07:15:46 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
use_const_declaration:
|
2018-01-29 14:11:45 +00:00
|
|
|
namespace_name
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-08-22 13:59:26 +00:00
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| namespace_name T_AS T_STRING
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListTokenPosition($1.(*ast.ParserSeparatedList).Items, $3),
|
2020-08-22 13:59:26 +00:00
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
AsTkn: $2,
|
|
|
|
Alias: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-08-22 13:59:26 +00:00
|
|
|
NsSeparatorTkn: $1,
|
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name T_AS T_STRING
|
|
|
|
{
|
2020-08-22 13:59:26 +00:00
|
|
|
$$ = &ast.StmtUseDeclaration{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-08-22 13:59:26 +00:00
|
|
|
NsSeparatorTkn: $1,
|
|
|
|
Use: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
AsTkn: $3,
|
|
|
|
Alias: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
2020-08-22 13:59:26 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
}
|
2017-11-30 17:04:52 +00:00
|
|
|
;
|
2017-12-01 07:15:46 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
constant_declaration:
|
2018-02-03 10:09:02 +00:00
|
|
|
constant_declaration ',' T_STRING '=' static_scalar
|
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
constList := $1.(*ast.StmtConstList)
|
2020-12-08 00:08:59 +00:00
|
|
|
constList.Position = yylex.(*Parser).builder.NewNodesPosition($1, $5)
|
2020-09-14 16:25:38 +00:00
|
|
|
constList.SeparatorTkns = append(constList.SeparatorTkns, $2)
|
2020-08-24 20:28:44 +00:00
|
|
|
constList.Consts = append(constList.Consts, &ast.StmtConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($3, $5),
|
2020-08-24 20:28:44 +00:00
|
|
|
Name: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-08-24 20:28:44 +00:00
|
|
|
},
|
|
|
|
EqualTkn: $4,
|
|
|
|
Expr: $5,
|
|
|
|
})
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-08-24 20:28:44 +00:00
|
|
|
$$ = $1
|
2018-02-03 10:09:02 +00:00
|
|
|
}
|
|
|
|
| T_CONST T_STRING '=' static_scalar
|
|
|
|
{
|
2020-08-24 20:28:44 +00:00
|
|
|
$$ = &ast.StmtConstList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $4),
|
2020-08-24 20:28:44 +00:00
|
|
|
ConstTkn: $1,
|
|
|
|
Consts: []ast.Vertex{
|
|
|
|
&ast.StmtConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($2, $4),
|
2020-08-24 20:28:44 +00:00
|
|
|
Name: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
2020-08-24 20:28:44 +00:00
|
|
|
},
|
|
|
|
EqualTkn: $3,
|
|
|
|
Expr: $4,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
}
|
2017-11-30 17:04:52 +00:00
|
|
|
;
|
2017-12-01 07:15:46 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
inner_statement_list:
|
2018-02-03 10:09:02 +00:00
|
|
|
inner_statement_list inner_statement
|
2018-04-09 20:08:29 +00:00
|
|
|
{
|
|
|
|
if $2 != nil {
|
|
|
|
$$ = append($1, $2)
|
|
|
|
}
|
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| /* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-30 17:04:52 +00:00
|
|
|
;
|
2017-12-01 07:15:46 +00:00
|
|
|
|
2018-01-08 22:30:28 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
inner_statement:
|
2018-04-09 20:08:29 +00:00
|
|
|
error
|
|
|
|
{
|
|
|
|
// error
|
|
|
|
$$ = nil
|
|
|
|
}
|
|
|
|
| statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| function_declaration_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| class_declaration_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| T_HALT_COMPILER '(' ')' ';'
|
|
|
|
{
|
2020-08-24 18:41:06 +00:00
|
|
|
$$ = &ast.StmtHaltCompiler{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-08-24 18:41:06 +00:00
|
|
|
HaltCompilerTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
CloseParenthesisTkn: $3,
|
|
|
|
SemiColonTkn: $4,
|
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
}
|
2017-11-30 17:04:52 +00:00
|
|
|
;
|
2017-12-01 07:15:46 +00:00
|
|
|
|
2017-11-27 22:37:17 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
statement:
|
2018-02-03 10:09:02 +00:00
|
|
|
unticked_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| T_STRING ':'
|
|
|
|
{
|
2020-09-17 13:49:54 +00:00
|
|
|
$$ = &ast.StmtLabel{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-11-20 20:02:36 +00:00
|
|
|
LabelName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-09-17 13:49:54 +00:00
|
|
|
ColonTkn: $2,
|
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
unticked_statement:
|
2018-02-03 12:29:23 +00:00
|
|
|
'{' inner_statement_list '}'
|
|
|
|
{
|
2020-09-02 19:58:19 +00:00
|
|
|
$$ = &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-11 15:29:22 +00:00
|
|
|
OpenCurlyBracketTkn: $1,
|
|
|
|
Stmts: $2,
|
|
|
|
CloseCurlyBracketTkn: $3,
|
2020-09-02 19:58:19 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_IF parenthesis_expr statement elseif_list else_single
|
|
|
|
{
|
2020-12-08 00:08:59 +00:00
|
|
|
pos := yylex.(*Parser).builder.NewTokenNodePosition($1, $3)
|
2018-02-03 12:29:23 +00:00
|
|
|
if $5 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewTokenNodePosition($1, $5)
|
2018-02-03 12:29:23 +00:00
|
|
|
} else if len($4) > 0 {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewTokenNodeListPosition($1, $4)
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = &ast.StmtIf{
|
2020-12-07 22:04:12 +00:00
|
|
|
Position: pos,
|
2020-09-03 19:18:06 +00:00
|
|
|
IfTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2.(*ast.ParserBrackets).OpenBracketTkn,
|
|
|
|
Cond: $2.(*ast.ParserBrackets).Child,
|
|
|
|
CloseParenthesisTkn: $2.(*ast.ParserBrackets).CloseBracketTkn,
|
|
|
|
Stmt: $3,
|
|
|
|
ElseIf: $4,
|
|
|
|
Else: $5,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_IF parenthesis_expr ':' inner_statement_list new_elseif_list new_else_single T_ENDIF ';'
|
|
|
|
{
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = &ast.StmtIf{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $8),
|
2020-09-03 19:18:06 +00:00
|
|
|
Alt: true,
|
|
|
|
IfTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2.(*ast.ParserBrackets).OpenBracketTkn,
|
|
|
|
Cond: $2.(*ast.ParserBrackets).Child,
|
|
|
|
CloseParenthesisTkn: $2.(*ast.ParserBrackets).CloseBracketTkn,
|
|
|
|
ColonTkn: $3,
|
|
|
|
Stmt: &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($4),
|
2020-09-03 19:18:06 +00:00
|
|
|
Stmts: $4,
|
|
|
|
},
|
|
|
|
ElseIf: $5,
|
|
|
|
Else: $6,
|
|
|
|
EndIfTkn: $7,
|
|
|
|
SemiColonTkn: $8,
|
2019-02-13 20:18:07 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_WHILE parenthesis_expr while_statement
|
|
|
|
{
|
2020-09-04 07:33:47 +00:00
|
|
|
$3.(*ast.StmtWhile).WhileTkn = $1
|
|
|
|
$3.(*ast.StmtWhile).OpenParenthesisTkn = $2.(*ast.ParserBrackets).OpenBracketTkn
|
|
|
|
$3.(*ast.StmtWhile).Cond = $2.(*ast.ParserBrackets).Child
|
|
|
|
$3.(*ast.StmtWhile).CloseParenthesisTkn = $2.(*ast.ParserBrackets).CloseBracketTkn
|
2020-12-08 00:08:59 +00:00
|
|
|
$3.(*ast.StmtWhile).Position = yylex.(*Parser).builder.NewTokenNodePosition($1, $3)
|
2018-05-02 00:36:53 +00:00
|
|
|
|
|
|
|
$$ = $3
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_DO statement T_WHILE parenthesis_expr ';'
|
|
|
|
{
|
2020-09-04 07:53:07 +00:00
|
|
|
$$ = &ast.StmtDo{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $5),
|
2020-09-04 07:53:07 +00:00
|
|
|
DoTkn: $1,
|
|
|
|
Stmt: $2,
|
|
|
|
WhileTkn: $3,
|
|
|
|
OpenParenthesisTkn: $4.(*ast.ParserBrackets).OpenBracketTkn,
|
|
|
|
Cond: $4.(*ast.ParserBrackets).Child,
|
|
|
|
CloseParenthesisTkn: $4.(*ast.ParserBrackets).CloseBracketTkn,
|
|
|
|
SemiColonTkn: $5,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_FOR '(' for_expr ';' for_expr ';' for_expr ')' for_statement
|
|
|
|
{
|
2020-09-04 08:37:17 +00:00
|
|
|
$9.(*ast.StmtFor).ForTkn = $1
|
|
|
|
$9.(*ast.StmtFor).OpenParenthesisTkn = $2
|
2020-12-04 10:49:13 +00:00
|
|
|
$9.(*ast.StmtFor).Init = $3.(*ast.ParserSeparatedList).Items
|
|
|
|
$9.(*ast.StmtFor).InitSeparatorTkns = $3.(*ast.ParserSeparatedList).SeparatorTkns
|
2020-09-04 08:37:17 +00:00
|
|
|
$9.(*ast.StmtFor).InitSemiColonTkn = $4
|
2020-12-04 10:49:13 +00:00
|
|
|
$9.(*ast.StmtFor).Cond = $5.(*ast.ParserSeparatedList).Items
|
|
|
|
$9.(*ast.StmtFor).CondSeparatorTkns = $5.(*ast.ParserSeparatedList).SeparatorTkns
|
2020-09-04 08:37:17 +00:00
|
|
|
$9.(*ast.StmtFor).CondSemiColonTkn = $6
|
2020-12-04 10:49:13 +00:00
|
|
|
$9.(*ast.StmtFor).Loop = $7.(*ast.ParserSeparatedList).Items
|
|
|
|
$9.(*ast.StmtFor).LoopSeparatorTkns = $7.(*ast.ParserSeparatedList).SeparatorTkns
|
2020-09-04 08:37:17 +00:00
|
|
|
$9.(*ast.StmtFor).CloseParenthesisTkn = $8
|
2020-12-08 00:08:59 +00:00
|
|
|
$9.(*ast.StmtFor).Position = yylex.(*Parser).builder.NewTokenNodePosition($1, $9)
|
2018-05-02 00:36:53 +00:00
|
|
|
|
|
|
|
$$ = $9
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_SWITCH parenthesis_expr switch_case_list
|
|
|
|
{
|
2020-09-06 09:45:08 +00:00
|
|
|
$3.(*ast.StmtSwitch).SwitchTkn = $1
|
|
|
|
$3.(*ast.StmtSwitch).OpenParenthesisTkn = $2.(*ast.ParserBrackets).OpenBracketTkn
|
|
|
|
$3.(*ast.StmtSwitch).Cond = $2.(*ast.ParserBrackets).Child
|
|
|
|
$3.(*ast.StmtSwitch).CloseParenthesisTkn = $2.(*ast.ParserBrackets).CloseBracketTkn
|
2020-12-08 00:08:59 +00:00
|
|
|
$3.(*ast.StmtSwitch).Position = yylex.(*Parser).builder.NewTokenNodePosition($1, $3)
|
2018-04-29 20:10:56 +00:00
|
|
|
|
|
|
|
$$ = $3
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_BREAK ';'
|
|
|
|
{
|
2020-09-06 10:02:13 +00:00
|
|
|
$$ = &ast.StmtBreak{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-09-06 10:02:13 +00:00
|
|
|
BreakTkn: $1,
|
|
|
|
SemiColonTkn: $2,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_BREAK expr ';'
|
|
|
|
{
|
2020-09-06 10:02:13 +00:00
|
|
|
$$ = &ast.StmtBreak{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-09-06 10:02:13 +00:00
|
|
|
BreakTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_CONTINUE ';'
|
|
|
|
{
|
2020-09-06 10:02:13 +00:00
|
|
|
$$ = &ast.StmtContinue{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-09-06 10:02:13 +00:00
|
|
|
ContinueTkn: $1,
|
|
|
|
SemiColonTkn: $2,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_CONTINUE expr ';'
|
|
|
|
{
|
2020-09-06 10:02:13 +00:00
|
|
|
$$ = &ast.StmtContinue{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-09-06 10:02:13 +00:00
|
|
|
ContinueTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_RETURN ';'
|
|
|
|
{
|
2020-09-06 10:09:00 +00:00
|
|
|
$$ = &ast.StmtReturn{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-09-06 10:09:00 +00:00
|
|
|
ReturnTkn: $1,
|
|
|
|
SemiColonTkn: $2,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_RETURN expr_without_variable ';'
|
|
|
|
{
|
2020-09-06 10:09:00 +00:00
|
|
|
$$ = &ast.StmtReturn{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-09-06 10:09:00 +00:00
|
|
|
ReturnTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_RETURN variable ';'
|
|
|
|
{
|
2020-09-06 10:09:00 +00:00
|
|
|
$$ = &ast.StmtReturn{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-09-06 10:09:00 +00:00
|
|
|
ReturnTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| yield_expr ';'
|
2018-02-12 21:10:53 +00:00
|
|
|
{
|
2020-11-22 16:54:13 +00:00
|
|
|
$$ = &ast.StmtExpression{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $2),
|
2020-11-22 16:54:13 +00:00
|
|
|
Expr: $1,
|
|
|
|
SemiColonTkn: $2,
|
|
|
|
}
|
2018-02-12 21:10:53 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| T_GLOBAL global_var_list ';'
|
|
|
|
{
|
2020-09-09 19:53:51 +00:00
|
|
|
$2.(*ast.StmtGlobal).GlobalTkn = $1
|
|
|
|
$2.(*ast.StmtGlobal).SemiColonTkn = $3
|
2020-12-08 00:08:59 +00:00
|
|
|
$2.(*ast.StmtGlobal).Position = yylex.(*Parser).builder.NewTokensPosition($1, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-09-09 19:53:51 +00:00
|
|
|
$$ = $2
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_STATIC static_var_list ';'
|
|
|
|
{
|
2020-09-09 19:53:51 +00:00
|
|
|
$2.(*ast.StmtStatic).StaticTkn = $1
|
|
|
|
$2.(*ast.StmtStatic).SemiColonTkn = $3
|
2020-12-08 00:08:59 +00:00
|
|
|
$2.(*ast.StmtStatic).Position = yylex.(*Parser).builder.NewTokensPosition($1, $3)
|
2020-05-13 17:18:53 +00:00
|
|
|
|
2020-09-09 19:53:51 +00:00
|
|
|
$$ = $2
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_ECHO echo_expr_list ';'
|
|
|
|
{
|
2020-09-10 20:11:08 +00:00
|
|
|
$2.(*ast.StmtEcho).EchoTkn = $1
|
|
|
|
$2.(*ast.StmtEcho).SemiColonTkn = $3
|
2020-12-08 00:08:59 +00:00
|
|
|
$2.(*ast.StmtEcho).Position = yylex.(*Parser).builder.NewTokensPosition($1, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-09-10 20:11:08 +00:00
|
|
|
$$ = $2
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| T_INLINE_HTML
|
|
|
|
{
|
2020-09-14 13:36:01 +00:00
|
|
|
$$ = &ast.StmtInlineHtml{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-09-14 13:36:01 +00:00
|
|
|
InlineHtmlTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| expr ';'
|
2018-02-08 10:48:38 +00:00
|
|
|
{
|
2020-11-22 16:54:13 +00:00
|
|
|
$$ = &ast.StmtExpression{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $2),
|
2020-11-22 16:54:13 +00:00
|
|
|
Expr: $1,
|
|
|
|
SemiColonTkn: $2,
|
|
|
|
}
|
2018-02-08 10:48:38 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| T_UNSET '(' unset_variables ')' ';'
|
|
|
|
{
|
2020-09-14 14:19:17 +00:00
|
|
|
$3.(*ast.StmtUnset).UnsetTkn = $1
|
|
|
|
$3.(*ast.StmtUnset).OpenParenthesisTkn = $2
|
|
|
|
$3.(*ast.StmtUnset).CloseParenthesisTkn = $4
|
|
|
|
$3.(*ast.StmtUnset).SemiColonTkn = $5
|
2020-12-08 00:08:59 +00:00
|
|
|
$3.(*ast.StmtUnset).Position = yylex.(*Parser).builder.NewTokensPosition($1, $5)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-09-14 14:19:17 +00:00
|
|
|
$$ = $3
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
2018-02-03 12:41:34 +00:00
|
|
|
| T_FOREACH '(' variable T_AS foreach_variable foreach_optional_arg ')' foreach_statement
|
|
|
|
{
|
2020-09-14 15:36:55 +00:00
|
|
|
$8.(*ast.StmtForeach).ForeachTkn = $1
|
|
|
|
$8.(*ast.StmtForeach).OpenParenthesisTkn = $2
|
|
|
|
$8.(*ast.StmtForeach).Expr = $3
|
|
|
|
$8.(*ast.StmtForeach).AsTkn = $4
|
2018-05-14 15:09:11 +00:00
|
|
|
if $6 == nil {
|
2020-09-14 15:36:55 +00:00
|
|
|
$8.(*ast.StmtForeach).Var = $5
|
2018-02-03 12:41:34 +00:00
|
|
|
} else {
|
2020-09-14 15:36:55 +00:00
|
|
|
$8.(*ast.StmtForeach).Key = $5
|
|
|
|
$8.(*ast.StmtForeach).DoubleArrowTkn = $6.(*ast.StmtForeach).DoubleArrowTkn
|
|
|
|
$8.(*ast.StmtForeach).Var = $6.(*ast.StmtForeach).Var
|
2018-02-03 12:41:34 +00:00
|
|
|
}
|
2020-09-14 15:36:55 +00:00
|
|
|
$8.(*ast.StmtForeach).CloseParenthesisTkn = $7
|
2020-12-08 00:08:59 +00:00
|
|
|
$8.(*ast.StmtForeach).Position = yylex.(*Parser).builder.NewTokenNodePosition($1, $8)
|
2020-05-13 17:18:53 +00:00
|
|
|
|
2018-05-02 00:36:53 +00:00
|
|
|
$$ = $8
|
2018-02-03 12:41:34 +00:00
|
|
|
}
|
|
|
|
| T_FOREACH '(' expr_without_variable T_AS foreach_variable foreach_optional_arg ')' foreach_statement
|
|
|
|
{
|
2020-09-14 15:36:55 +00:00
|
|
|
$8.(*ast.StmtForeach).ForeachTkn = $1
|
|
|
|
$8.(*ast.StmtForeach).OpenParenthesisTkn = $2
|
|
|
|
$8.(*ast.StmtForeach).Expr = $3
|
|
|
|
$8.(*ast.StmtForeach).AsTkn = $4
|
2018-05-14 15:09:11 +00:00
|
|
|
if $6 == nil {
|
2020-09-14 15:36:55 +00:00
|
|
|
$8.(*ast.StmtForeach).Var = $5
|
2018-02-03 12:41:34 +00:00
|
|
|
} else {
|
2020-09-14 15:36:55 +00:00
|
|
|
$8.(*ast.StmtForeach).Key = $5
|
|
|
|
$8.(*ast.StmtForeach).DoubleArrowTkn = $6.(*ast.StmtForeach).DoubleArrowTkn
|
|
|
|
$8.(*ast.StmtForeach).Var = $6.(*ast.StmtForeach).Var
|
2018-02-03 12:41:34 +00:00
|
|
|
}
|
2020-09-14 15:36:55 +00:00
|
|
|
$8.(*ast.StmtForeach).CloseParenthesisTkn = $7
|
2020-12-08 00:08:59 +00:00
|
|
|
$8.(*ast.StmtForeach).Position = yylex.(*Parser).builder.NewTokenNodePosition($1, $8)
|
2020-05-13 17:18:53 +00:00
|
|
|
|
2018-05-02 00:36:53 +00:00
|
|
|
$$ = $8
|
2018-02-03 12:41:34 +00:00
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
| T_DECLARE '(' declare_list ')' declare_statement
|
|
|
|
{
|
2020-09-14 16:25:38 +00:00
|
|
|
$5.(*ast.StmtDeclare).DeclareTkn = $1
|
|
|
|
$5.(*ast.StmtDeclare).OpenParenthesisTkn = $2
|
|
|
|
$5.(*ast.StmtDeclare).Consts = $3.(*ast.ParserSeparatedList).Items
|
|
|
|
$5.(*ast.StmtDeclare).SeparatorTkns = $3.(*ast.ParserSeparatedList).SeparatorTkns
|
|
|
|
$5.(*ast.StmtDeclare).CloseParenthesisTkn = $4
|
2020-12-08 00:08:59 +00:00
|
|
|
$5.(*ast.StmtDeclare).Position = yylex.(*Parser).builder.NewTokenNodePosition($1, $5)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-09-14 16:25:38 +00:00
|
|
|
$$ = $5
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
|
|
|
| ';'
|
|
|
|
{
|
2020-09-14 16:34:02 +00:00
|
|
|
$$ = &ast.StmtNop{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-09-14 16:34:02 +00:00
|
|
|
SemiColonTkn: $1,
|
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
|
|
|
| T_TRY '{' inner_statement_list '}' catch_statement finally_statement
|
|
|
|
{
|
2020-12-08 00:08:59 +00:00
|
|
|
pos := yylex.(*Parser).builder.NewTokenNodeListPosition($1, $5)
|
2020-12-07 22:04:12 +00:00
|
|
|
if $6 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewTokenNodePosition($1, $6)
|
2020-12-07 22:04:12 +00:00
|
|
|
}
|
|
|
|
|
2020-09-14 17:15:50 +00:00
|
|
|
$$ = &ast.StmtTry{
|
2020-12-07 22:04:12 +00:00
|
|
|
Position: pos,
|
2020-12-11 15:29:22 +00:00
|
|
|
TryTkn: $1,
|
|
|
|
OpenCurlyBracketTkn: $2,
|
|
|
|
Stmts: $3,
|
|
|
|
CloseCurlyBracketTkn: $4,
|
|
|
|
Catches: $5,
|
|
|
|
Finally: $6,
|
2020-09-14 17:15:50 +00:00
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
|
|
|
| T_THROW expr ';'
|
|
|
|
{
|
2020-09-17 13:37:34 +00:00
|
|
|
$$ = &ast.StmtThrow{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-09-17 13:37:34 +00:00
|
|
|
ThrowTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
|
|
|
| T_GOTO T_STRING ';'
|
|
|
|
{
|
2020-09-17 13:49:54 +00:00
|
|
|
$$ = &ast.StmtGoto{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-11-20 20:02:36 +00:00
|
|
|
GotoTkn: $1,
|
|
|
|
Label: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-11 07:54:26 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
2020-09-17 13:49:54 +00:00
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
catch_statement:
|
2018-02-03 13:24:00 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
| T_CATCH '(' fully_qualified_class_name T_VARIABLE ')' '{' inner_statement_list '}' additional_catches
|
|
|
|
{
|
2020-09-14 17:15:50 +00:00
|
|
|
catch := &ast.StmtCatch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $8),
|
2020-12-03 22:13:28 +00:00
|
|
|
CatchTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
Types: []ast.Vertex{$3},
|
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-09-14 17:15:50 +00:00
|
|
|
CloseParenthesisTkn: $5,
|
|
|
|
OpenCurlyBracketTkn: $6,
|
|
|
|
Stmts: $7,
|
|
|
|
CloseCurlyBracketTkn: $8,
|
|
|
|
}
|
|
|
|
$$ = append([]ast.Vertex{catch}, $9...)
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
;
|
2017-12-01 07:15:46 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
finally_statement:
|
2018-02-03 13:24:00 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
| T_FINALLY '{' inner_statement_list '}'
|
|
|
|
{
|
2020-09-14 17:15:50 +00:00
|
|
|
$$ = &ast.StmtFinally{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-09-14 17:15:50 +00:00
|
|
|
FinallyTkn: $1,
|
|
|
|
OpenCurlyBracketTkn: $2,
|
|
|
|
Stmts: $3,
|
|
|
|
CloseCurlyBracketTkn: $4,
|
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
2017-11-27 22:37:17 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
additional_catches:
|
2018-02-03 13:24:00 +00:00
|
|
|
non_empty_additional_catches
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
| /* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
2017-11-27 22:37:17 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
non_empty_additional_catches:
|
2018-02-03 13:24:00 +00:00
|
|
|
additional_catch
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{$1}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
| non_empty_additional_catches additional_catch
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-29 13:49:32 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
additional_catch:
|
2018-02-03 13:24:00 +00:00
|
|
|
T_CATCH '(' fully_qualified_class_name T_VARIABLE ')' '{' inner_statement_list '}'
|
|
|
|
{
|
2020-09-14 17:15:50 +00:00
|
|
|
$$ = &ast.StmtCatch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $8),
|
2020-12-03 22:13:28 +00:00
|
|
|
CatchTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
Types: []ast.Vertex{$3},
|
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-09-14 17:15:50 +00:00
|
|
|
CloseParenthesisTkn: $5,
|
|
|
|
OpenCurlyBracketTkn: $6,
|
|
|
|
Stmts: $7,
|
|
|
|
CloseCurlyBracketTkn: $8,
|
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
2017-11-29 13:49:32 +00:00
|
|
|
;
|
2017-11-29 13:33:59 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
unset_variables:
|
2018-01-29 14:11:45 +00:00
|
|
|
unset_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-09-14 14:19:17 +00:00
|
|
|
$$ = &ast.StmtUnset{
|
|
|
|
Vars: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| unset_variables ',' unset_variable
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-09-14 14:19:17 +00:00
|
|
|
$1.(*ast.StmtUnset).Vars = append($1.(*ast.StmtUnset).Vars, $3)
|
|
|
|
$1.(*ast.StmtUnset).SeparatorTkns = append($1.(*ast.StmtUnset).SeparatorTkns, $2)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-09-14 14:19:17 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-11-28 20:04:30 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
unset_variable:
|
2018-02-03 12:29:23 +00:00
|
|
|
variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-28 20:17:11 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
function_declaration_statement:
|
2018-02-03 17:33:22 +00:00
|
|
|
unticked_function_declaration_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
2018-01-08 22:30:28 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
class_declaration_statement:
|
2018-02-03 17:33:22 +00:00
|
|
|
unticked_class_declaration_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-30 18:36:10 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
is_reference:
|
2018-02-03 17:33:22 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = nil
|
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
| '&'
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = $1
|
|
|
|
}
|
2017-11-29 09:37:16 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
is_variadic:
|
2018-02-03 17:33:22 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = nil
|
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
| T_ELLIPSIS
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = $1
|
|
|
|
}
|
2017-11-29 09:37:16 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
unticked_function_declaration_statement:
|
2018-02-03 17:33:22 +00:00
|
|
|
function is_reference T_STRING '(' parameter_list ')' '{' inner_statement_list '}'
|
|
|
|
{
|
2020-11-22 12:26:24 +00:00
|
|
|
$$ = &ast.StmtFunction{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $9),
|
2020-11-22 12:26:24 +00:00
|
|
|
FunctionTkn: $1,
|
|
|
|
AmpersandTkn: $2,
|
|
|
|
FunctionName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-22 12:26:24 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
|
|
|
},
|
|
|
|
OpenParenthesisTkn: $4,
|
2020-12-04 10:22:06 +00:00
|
|
|
Params: $5.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $5.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-11-22 12:26:24 +00:00
|
|
|
CloseParenthesisTkn: $6,
|
|
|
|
OpenCurlyBracketTkn: $7,
|
|
|
|
Stmts: $8,
|
|
|
|
CloseCurlyBracketTkn: $9,
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
unticked_class_declaration_statement:
|
2018-02-03 17:33:22 +00:00
|
|
|
class_entry_type T_STRING extends_from implements_list '{' class_statement_list '}'
|
|
|
|
{
|
|
|
|
switch n := $1.(type) {
|
2020-05-13 17:18:53 +00:00
|
|
|
case *ast.StmtClass :
|
2020-12-08 00:08:59 +00:00
|
|
|
n.Position = yylex.(*Parser).builder.NewNodeTokenPosition($1, $7)
|
2020-11-22 00:03:39 +00:00
|
|
|
n.ClassName = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-22 00:03:39 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
n.Extends = $3
|
|
|
|
n.Implements = $4
|
2020-11-22 00:03:39 +00:00
|
|
|
n.OpenCurlyBracket = $5
|
|
|
|
n.Stmts = $6
|
|
|
|
n.CloseCurlyBracket = $7
|
2020-05-13 17:18:53 +00:00
|
|
|
case *ast.StmtTrait :
|
2020-12-08 00:08:59 +00:00
|
|
|
n.Position = yylex.(*Parser).builder.NewNodeTokenPosition($1, $7)
|
2020-11-22 00:03:39 +00:00
|
|
|
n.TraitName = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-22 00:03:39 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
|
|
|
}
|
|
|
|
n.Extends = $3
|
|
|
|
n.Implements = $4
|
|
|
|
n.OpenCurlyBracket = $5
|
2018-02-03 17:33:22 +00:00
|
|
|
n.Stmts = $6
|
2020-11-22 00:03:39 +00:00
|
|
|
n.CloseCurlyBracket = $7
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-11-22 00:03:39 +00:00
|
|
|
$$ = $1
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
|
|
|
| interface_entry T_STRING interface_extends_list '{' class_statement_list '}'
|
|
|
|
{
|
2020-11-22 16:54:13 +00:00
|
|
|
$$ = &ast.StmtInterface{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $6),
|
2020-11-22 16:54:13 +00:00
|
|
|
InterfaceTkn: $1,
|
|
|
|
InterfaceName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-22 16:54:13 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
2020-11-22 16:54:13 +00:00
|
|
|
Extends: $3,
|
|
|
|
OpenCurlyBracketTkn: $4,
|
|
|
|
Stmts: $5,
|
|
|
|
CloseCurlyBracketTkn: $6,
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
class_entry_type:
|
2018-02-03 17:33:22 +00:00
|
|
|
T_CLASS
|
|
|
|
{
|
2020-11-22 00:03:39 +00:00
|
|
|
$$ = &ast.StmtClass{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-22 00:03:39 +00:00
|
|
|
ClassTkn: $1,
|
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
|
|
|
| T_ABSTRACT T_CLASS
|
|
|
|
{
|
2020-11-22 00:03:39 +00:00
|
|
|
$$ = &ast.StmtClass{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-11-22 00:03:39 +00:00
|
|
|
Modifiers: []ast.Vertex{
|
|
|
|
&ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-22 00:03:39 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ClassTkn: $2,
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
|
|
|
| T_TRAIT
|
|
|
|
{
|
2020-11-22 00:03:39 +00:00
|
|
|
$$ = &ast.StmtTrait{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-22 00:03:39 +00:00
|
|
|
TraitTkn: $1,
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
|
|
|
| T_FINAL T_CLASS
|
|
|
|
{
|
2020-11-22 00:03:39 +00:00
|
|
|
$$ = &ast.StmtClass{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-11-22 00:03:39 +00:00
|
|
|
Modifiers: []ast.Vertex{
|
|
|
|
&ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-22 00:03:39 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ClassTkn: $2,
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
2017-11-30 17:23:46 +00:00
|
|
|
;
|
|
|
|
|
2017-11-30 17:35:13 +00:00
|
|
|
extends_from:
|
2018-02-03 17:33:22 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
| T_EXTENDS fully_qualified_class_name
|
2018-05-12 20:10:01 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = &ast.StmtClassExtends{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-11-22 11:02:36 +00:00
|
|
|
ExtendTkn: $1,
|
|
|
|
ClassName: $2,
|
|
|
|
}
|
2018-05-12 20:10:01 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
interface_entry:
|
2018-02-03 17:33:22 +00:00
|
|
|
T_INTERFACE
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = $1
|
|
|
|
}
|
2017-11-30 17:35:13 +00:00
|
|
|
;
|
|
|
|
|
2017-11-30 17:23:46 +00:00
|
|
|
interface_extends_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_EXTENDS interface_list
|
2018-05-12 20:10:01 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = &ast.StmtInterfaceExtends{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-11-22 11:02:36 +00:00
|
|
|
ExtendsTkn: $1,
|
|
|
|
InterfaceNames: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
};
|
2018-05-12 20:10:01 +00:00
|
|
|
}
|
2017-11-30 17:23:46 +00:00
|
|
|
;
|
|
|
|
|
2017-11-30 17:35:13 +00:00
|
|
|
implements_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_IMPLEMENTS interface_list
|
2018-05-12 20:10:01 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = &ast.StmtClassImplements{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-11-22 11:02:36 +00:00
|
|
|
ImplementsTkn: $1,
|
|
|
|
InterfaceNames: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
};
|
2018-05-12 20:10:01 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
interface_list:
|
2018-02-03 17:33:22 +00:00
|
|
|
fully_qualified_class_name
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
| interface_list ',' fully_qualified_class_name
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
foreach_optional_arg:
|
2018-02-03 12:41:34 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 12:41:34 +00:00
|
|
|
| T_DOUBLE_ARROW foreach_variable
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-09-14 15:36:55 +00:00
|
|
|
$$ = &ast.StmtForeach{
|
|
|
|
DoubleArrowTkn: $1,
|
|
|
|
Var: $2,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-11-30 17:35:13 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
foreach_variable:
|
2018-02-01 10:35:43 +00:00
|
|
|
variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-01 10:35:43 +00:00
|
|
|
| '&' variable
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-03 20:20:50 +00:00
|
|
|
$$ = &ast.ExprReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 20:20:50 +00:00
|
|
|
AmpersandTkn: $1,
|
|
|
|
Var: $2,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-01 10:35:43 +00:00
|
|
|
| T_LIST '(' assignment_list ')'
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
pairList := $3.(*ast.ParserSeparatedList)
|
|
|
|
fistPair := pairList.Items[0].(*ast.ExprArrayItem)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-11-30 21:42:56 +00:00
|
|
|
if fistPair.Key == nil && fistPair.Val == nil && len(pairList.Items) == 1 {
|
|
|
|
pairList.Items = nil
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ExprList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-11-30 21:42:56 +00:00
|
|
|
ListTkn: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Items: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-01 10:35:43 +00:00
|
|
|
}
|
2017-11-29 14:21:44 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
for_statement:
|
2018-01-29 14:11:45 +00:00
|
|
|
statement
|
2018-05-02 00:36:53 +00:00
|
|
|
{
|
2020-09-04 08:37:17 +00:00
|
|
|
$$ = &ast.StmtFor{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-09-04 08:37:17 +00:00
|
|
|
Stmt: $1,
|
|
|
|
}
|
2018-05-02 00:36:53 +00:00
|
|
|
}
|
2018-02-18 17:57:54 +00:00
|
|
|
| ':' inner_statement_list T_ENDFOR ';'
|
2018-02-03 12:29:23 +00:00
|
|
|
{
|
2020-09-04 08:37:17 +00:00
|
|
|
$$ = &ast.StmtFor{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-09-04 08:37:17 +00:00
|
|
|
Alt: true,
|
|
|
|
ColonTkn: $1,
|
|
|
|
Stmt: &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2),
|
2020-09-04 08:37:17 +00:00
|
|
|
Stmts: $2,
|
2020-09-02 19:58:19 +00:00
|
|
|
},
|
2020-09-04 08:37:17 +00:00
|
|
|
EndForTkn: $3,
|
|
|
|
SemiColonTkn: $4,
|
2020-09-02 19:58:19 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
foreach_statement:
|
2018-01-29 14:11:45 +00:00
|
|
|
statement
|
2018-05-02 00:36:53 +00:00
|
|
|
{
|
2020-09-14 15:36:55 +00:00
|
|
|
$$ = &ast.StmtForeach{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-09-14 15:36:55 +00:00
|
|
|
Stmt: $1,
|
|
|
|
}
|
2018-05-02 00:36:53 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| ':' inner_statement_list T_ENDFOREACH ';'
|
2018-02-03 12:41:34 +00:00
|
|
|
{
|
2020-09-14 15:36:55 +00:00
|
|
|
$$ = &ast.StmtForeach{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-09-14 15:36:55 +00:00
|
|
|
Alt: true,
|
|
|
|
ColonTkn: $1,
|
|
|
|
Stmt: &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2),
|
2020-09-14 15:36:55 +00:00
|
|
|
Stmts: $2,
|
|
|
|
},
|
|
|
|
EndForeachTkn: $3,
|
|
|
|
SemiColonTkn: $4,
|
2020-09-02 19:58:19 +00:00
|
|
|
}
|
2018-02-03 12:41:34 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
declare_statement:
|
2018-01-29 14:11:45 +00:00
|
|
|
statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-09-14 16:25:38 +00:00
|
|
|
$$ = &ast.StmtDeclare{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-09-14 16:25:38 +00:00
|
|
|
Stmt: $1,
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| ':' inner_statement_list T_ENDDECLARE ';'
|
2018-02-03 13:24:00 +00:00
|
|
|
{
|
2020-09-14 16:25:38 +00:00
|
|
|
$$ = &ast.StmtDeclare{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-09-14 16:25:38 +00:00
|
|
|
Alt: true,
|
|
|
|
ColonTkn: $1,
|
|
|
|
Stmt: &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2),
|
2020-09-14 16:25:38 +00:00
|
|
|
Stmts: $2,
|
|
|
|
},
|
|
|
|
EndDeclareTkn: $3,
|
|
|
|
SemiColonTkn: $4,
|
2020-09-02 19:58:19 +00:00
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
|
|
|
declare_list:
|
2018-02-03 13:24:00 +00:00
|
|
|
T_STRING '=' static_scalar
|
|
|
|
{
|
2020-09-14 16:25:38 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.StmtConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $3),
|
2020-09-14 16:25:38 +00:00
|
|
|
Name: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
2020-09-14 16:25:38 +00:00
|
|
|
},
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
2020-08-24 20:28:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
|
|
|
| declare_list ',' T_STRING '=' static_scalar
|
|
|
|
{
|
2020-09-14 16:25:38 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append(
|
|
|
|
$1.(*ast.ParserSeparatedList).Items,
|
|
|
|
&ast.StmtConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($3, $5),
|
2020-09-14 16:25:38 +00:00
|
|
|
Name: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-09-14 16:25:38 +00:00
|
|
|
},
|
|
|
|
EqualTkn: $4,
|
|
|
|
Expr: $5,
|
2020-08-24 20:28:44 +00:00
|
|
|
},
|
2020-09-14 16:25:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
switch_case_list:
|
2018-02-03 12:29:23 +00:00
|
|
|
'{' case_list '}'
|
2018-04-29 20:10:56 +00:00
|
|
|
{
|
2020-09-06 09:45:08 +00:00
|
|
|
$$ = &ast.StmtSwitch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-09-06 09:45:08 +00:00
|
|
|
OpenCurlyBracketTkn: $1,
|
|
|
|
CaseList: $2,
|
|
|
|
CloseCurlyBracketTkn: $3,
|
|
|
|
}
|
2018-04-29 20:10:56 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| '{' ';' case_list '}'
|
2018-04-29 20:10:56 +00:00
|
|
|
{
|
2020-09-06 09:45:08 +00:00
|
|
|
$$ = &ast.StmtSwitch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-09-06 09:45:08 +00:00
|
|
|
OpenCurlyBracketTkn: $1,
|
|
|
|
CaseSeparatorTkn: $2,
|
|
|
|
CaseList: $3,
|
|
|
|
CloseCurlyBracketTkn: $4,
|
|
|
|
}
|
2018-04-29 20:10:56 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| ':' case_list T_ENDSWITCH ';'
|
2018-04-29 20:10:56 +00:00
|
|
|
{
|
2020-09-06 09:45:08 +00:00
|
|
|
$$ = &ast.StmtSwitch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-09-06 09:45:08 +00:00
|
|
|
Alt: true,
|
|
|
|
ColonTkn: $1,
|
|
|
|
CaseList: $2,
|
|
|
|
EndSwitchTkn: $3,
|
|
|
|
SemiColonTkn: $4,
|
|
|
|
}
|
2018-04-29 20:10:56 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| ':' ';' case_list T_ENDSWITCH ';'
|
2018-04-29 20:10:56 +00:00
|
|
|
{
|
2020-09-06 09:45:08 +00:00
|
|
|
$$ = &ast.StmtSwitch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $5),
|
2020-09-06 09:45:08 +00:00
|
|
|
Alt: true,
|
|
|
|
ColonTkn: $1,
|
|
|
|
CaseSeparatorTkn: $2,
|
|
|
|
CaseList: $3,
|
|
|
|
EndSwitchTkn: $4,
|
|
|
|
SemiColonTkn: $5,
|
|
|
|
}
|
2018-04-29 20:10:56 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
case_list:
|
2018-02-03 12:29:23 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-09-06 09:45:08 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| case_list T_CASE expr case_separator inner_statement_list
|
|
|
|
{
|
2020-09-06 09:45:08 +00:00
|
|
|
$$ = append($1, &ast.StmtCase{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($2, $5),
|
2020-09-06 09:45:08 +00:00
|
|
|
CaseTkn: $2,
|
|
|
|
Cond: $3,
|
|
|
|
CaseSeparatorTkn: $4,
|
|
|
|
Stmts: $5,
|
|
|
|
})
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
|
|
|
| case_list T_DEFAULT case_separator inner_statement_list
|
|
|
|
{
|
2020-09-06 09:45:08 +00:00
|
|
|
$$ = append($1, &ast.StmtDefault{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($2, $4),
|
2020-09-06 09:45:08 +00:00
|
|
|
DefaultTkn: $2,
|
|
|
|
CaseSeparatorTkn: $3,
|
|
|
|
Stmts: $4,
|
|
|
|
})
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
case_separator:
|
2018-01-29 14:11:45 +00:00
|
|
|
':'
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = $1
|
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| ';'
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = $1
|
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
while_statement:
|
2018-01-29 14:11:45 +00:00
|
|
|
statement
|
2018-05-02 00:36:53 +00:00
|
|
|
{
|
2020-09-04 07:33:47 +00:00
|
|
|
$$ = &ast.StmtWhile{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-09-04 07:33:47 +00:00
|
|
|
Stmt: $1,
|
|
|
|
}
|
2018-05-02 00:36:53 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| ':' inner_statement_list T_ENDWHILE ';'
|
2018-02-03 12:29:23 +00:00
|
|
|
{
|
2020-09-04 07:33:47 +00:00
|
|
|
$$ = &ast.StmtWhile{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-09-04 07:33:47 +00:00
|
|
|
Alt: true,
|
|
|
|
ColonTkn: $1,
|
|
|
|
Stmt: &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($2),
|
2020-09-04 07:33:47 +00:00
|
|
|
Stmts: $2,
|
|
|
|
},
|
|
|
|
EndWhileTkn: $3,
|
|
|
|
SemiColonTkn: $4,
|
2020-09-02 19:58:19 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elseif_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| elseif_list T_ELSEIF parenthesis_expr statement
|
|
|
|
{
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = append($1, &ast.StmtElseIf{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($2, $4),
|
2020-09-03 19:18:06 +00:00
|
|
|
ElseIfTkn: $2,
|
|
|
|
OpenParenthesisTkn: $3.(*ast.ParserBrackets).OpenBracketTkn,
|
|
|
|
Cond: $3.(*ast.ParserBrackets).Child,
|
|
|
|
CloseParenthesisTkn: $3.(*ast.ParserBrackets).CloseBracketTkn,
|
|
|
|
Stmt: $4,
|
|
|
|
})
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
new_elseif_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| new_elseif_list T_ELSEIF parenthesis_expr ':' inner_statement_list
|
|
|
|
{
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = append($1, &ast.StmtElseIf{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($2, $5),
|
2020-09-03 19:18:06 +00:00
|
|
|
Alt: true,
|
|
|
|
ElseIfTkn: $2,
|
|
|
|
OpenParenthesisTkn: $3.(*ast.ParserBrackets).OpenBracketTkn,
|
|
|
|
Cond: $3.(*ast.ParserBrackets).Child,
|
|
|
|
CloseParenthesisTkn: $3.(*ast.ParserBrackets).CloseBracketTkn,
|
|
|
|
ColonTkn: $4,
|
|
|
|
Stmt: &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($5),
|
2020-09-03 19:18:06 +00:00
|
|
|
Stmts: $5,
|
|
|
|
},
|
|
|
|
})
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
else_single:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_ELSE statement
|
2018-02-03 12:29:23 +00:00
|
|
|
{
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = &ast.StmtElse{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-09-03 19:18:06 +00:00
|
|
|
ElseTkn: $1,
|
|
|
|
Stmt: $2,
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
|
|
|
new_else_single:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_ELSE ':' inner_statement_list
|
2018-02-03 12:29:23 +00:00
|
|
|
{
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = &ast.StmtElse{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $3),
|
2020-09-03 19:18:06 +00:00
|
|
|
Alt: true,
|
|
|
|
ElseTkn: $1,
|
|
|
|
ColonTkn: $2,
|
|
|
|
Stmt: &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($3),
|
2020-09-03 19:18:06 +00:00
|
|
|
Stmts: $3,
|
2020-09-02 19:58:19 +00:00
|
|
|
},
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
parameter_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
non_empty_parameter_list
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 10:22:06 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| /* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 10:22:06 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
non_empty_parameter_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
parameter
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 10:22:06 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| non_empty_parameter_list ',' parameter
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 10:22:06 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-04 10:22:06 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
parameter:
|
2018-01-29 14:11:45 +00:00
|
|
|
optional_class_type is_reference is_variadic T_VARIABLE
|
2018-02-03 17:33:22 +00:00
|
|
|
{
|
2020-12-08 00:08:59 +00:00
|
|
|
pos := yylex.(*Parser).builder.NewTokenPosition($4)
|
2018-02-03 17:33:22 +00:00
|
|
|
if $1 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewNodeTokenPosition($1, $4)
|
2018-05-11 20:23:57 +00:00
|
|
|
} else if $2 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewTokensPosition($2, $4)
|
2018-05-11 20:23:57 +00:00
|
|
|
} else if $3 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewTokensPosition($3, $4)
|
2020-11-20 20:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$$ = &ast.Parameter{
|
2020-12-07 22:04:12 +00:00
|
|
|
Position: pos,
|
2020-12-04 09:36:12 +00:00
|
|
|
Type: $1,
|
|
|
|
AmpersandTkn: $2,
|
|
|
|
VariadicTkn: $3,
|
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-04 09:36:12 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-04 09:36:12 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
2020-11-20 20:14:26 +00:00
|
|
|
},
|
2020-12-04 09:36:12 +00:00
|
|
|
},
|
2020-07-05 19:47:46 +00:00
|
|
|
}
|
2020-12-04 09:36:12 +00:00
|
|
|
}
|
|
|
|
| optional_class_type is_reference is_variadic T_VARIABLE '=' expr
|
|
|
|
{
|
2020-12-08 00:08:59 +00:00
|
|
|
pos := yylex.(*Parser).builder.NewTokenNodePosition($4, $6)
|
2018-02-03 17:33:22 +00:00
|
|
|
if $1 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewNodesPosition($1, $6)
|
2018-05-11 20:23:57 +00:00
|
|
|
} else if $2 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewTokenNodePosition($2, $6)
|
2018-05-11 20:23:57 +00:00
|
|
|
} else if $3 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewTokenNodePosition($3, $6)
|
2020-11-20 20:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$$ = &ast.Parameter{
|
2020-12-07 22:04:12 +00:00
|
|
|
Position: pos,
|
2020-11-20 20:25:37 +00:00
|
|
|
Type: $1,
|
2020-12-04 09:36:12 +00:00
|
|
|
AmpersandTkn: $2,
|
|
|
|
VariadicTkn: $3,
|
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-04 09:36:12 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-04 09:36:12 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-11-20 20:25:37 +00:00
|
|
|
EqualTkn: $5,
|
|
|
|
DefaultValue: $6,
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
optional_class_type:
|
2018-02-03 17:33:22 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
| T_ARRAY
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
|
|
|
| T_CALLABLE
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
|
|
|
| fully_qualified_class_name
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
function_call_parameter_list:
|
2018-02-01 14:07:18 +00:00
|
|
|
'(' ')'
|
2018-04-29 16:58:49 +00:00
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = &ast.ArgumentList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-11-20 20:57:27 +00:00
|
|
|
OpenParenthesisTkn: $1,
|
|
|
|
CloseParenthesisTkn: $2,
|
|
|
|
}
|
2018-04-29 16:58:49 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
| '(' non_empty_function_call_parameter_list ')'
|
2018-04-29 16:58:49 +00:00
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
argumentList := $2.(*ast.ArgumentList)
|
2020-12-08 00:08:59 +00:00
|
|
|
argumentList.Position = yylex.(*Parser).builder.NewTokensPosition($1, $3)
|
2020-11-20 20:57:27 +00:00
|
|
|
argumentList.OpenParenthesisTkn = $1
|
|
|
|
argumentList.CloseParenthesisTkn = $3
|
2018-04-29 16:58:49 +00:00
|
|
|
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = argumentList
|
2018-04-29 16:58:49 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
| '(' yield_expr ')'
|
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = &ast.ArgumentList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-11-20 20:57:27 +00:00
|
|
|
OpenParenthesisTkn: $1,
|
|
|
|
Arguments: []ast.Vertex{
|
|
|
|
&ast.Argument{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($2),
|
2020-11-20 20:57:27 +00:00
|
|
|
Expr: $2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
CloseParenthesisTkn: $3,
|
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
non_empty_function_call_parameter_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
function_call_parameter
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = &ast.ArgumentList{
|
|
|
|
Arguments: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| non_empty_function_call_parameter_list ',' function_call_parameter
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
$1.(*ast.ArgumentList).SeparatorTkns = append($1.(*ast.ArgumentList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ArgumentList).Arguments = append($1.(*ast.ArgumentList).Arguments, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
function_call_parameter:
|
2018-02-03 18:13:11 +00:00
|
|
|
expr_without_variable
|
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = &ast.Argument{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-11-20 20:57:27 +00:00
|
|
|
Expr: $1,
|
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| variable
|
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = &ast.Argument{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-11-20 20:57:27 +00:00
|
|
|
Expr: $1,
|
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| '&' w_variable
|
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = &ast.Argument{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-11-20 20:57:27 +00:00
|
|
|
AmpersandTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| T_ELLIPSIS expr
|
|
|
|
{
|
2020-11-20 20:57:27 +00:00
|
|
|
$$ = &ast.Argument{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-11-20 20:57:27 +00:00
|
|
|
VariadicTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
global_var_list:
|
2018-02-03 12:29:23 +00:00
|
|
|
global_var_list ',' global_var
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-09-09 19:53:51 +00:00
|
|
|
$1.(*ast.StmtGlobal).Vars = append($1.(*ast.StmtGlobal).Vars, $3)
|
|
|
|
$1.(*ast.StmtGlobal).SeparatorTkns = append($1.(*ast.StmtGlobal).SeparatorTkns, $2)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-09-09 19:53:51 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| global_var
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-09-09 19:53:51 +00:00
|
|
|
$$ = &ast.StmtGlobal{
|
|
|
|
Vars: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
global_var:
|
2018-01-31 10:29:38 +00:00
|
|
|
T_VARIABLE
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-01-31 10:29:38 +00:00
|
|
|
}
|
|
|
|
| '$' r_variable
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 22:13:28 +00:00
|
|
|
DollarTkn: $1,
|
|
|
|
VarName: $2,
|
|
|
|
}
|
2018-01-31 10:29:38 +00:00
|
|
|
}
|
|
|
|
| '$' '{' expr '}'
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-03 22:13:28 +00:00
|
|
|
DollarTkn: $1,
|
|
|
|
VarName: &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($2, $4),
|
2020-12-03 22:13:28 +00:00
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Child: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
},
|
|
|
|
}
|
2018-01-31 10:29:38 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
static_var_list:
|
2018-01-31 10:29:38 +00:00
|
|
|
static_var_list ',' T_VARIABLE
|
|
|
|
{
|
2020-09-09 19:53:51 +00:00
|
|
|
$1.(*ast.StmtStatic).Vars = append($1.(*ast.StmtStatic).Vars, &ast.StmtStaticVar{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-03 22:13:28 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-07 22:04:12 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-09-09 19:53:51 +00:00
|
|
|
})
|
|
|
|
$1.(*ast.StmtStatic).SeparatorTkns = append($1.(*ast.StmtStatic).SeparatorTkns, $2)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-01-31 10:29:38 +00:00
|
|
|
}
|
|
|
|
| static_var_list ',' T_VARIABLE '=' static_scalar
|
|
|
|
{
|
2020-09-09 19:53:51 +00:00
|
|
|
$1.(*ast.StmtStatic).Vars = append($1.(*ast.StmtStatic).Vars, &ast.StmtStaticVar{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($3, $5),
|
2020-12-03 22:13:28 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-09-09 19:53:51 +00:00
|
|
|
EqualTkn: $4,
|
|
|
|
Expr: $5,
|
|
|
|
})
|
|
|
|
$1.(*ast.StmtStatic).SeparatorTkns = append($1.(*ast.StmtStatic).SeparatorTkns, $2)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-01-31 10:29:38 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE
|
|
|
|
{
|
2020-09-09 19:53:51 +00:00
|
|
|
$$ = &ast.StmtStatic{
|
|
|
|
Vars: []ast.Vertex{
|
|
|
|
&ast.StmtStaticVar{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-09-09 19:53:51 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-31 10:29:38 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE '=' static_scalar
|
|
|
|
{
|
2020-09-09 19:53:51 +00:00
|
|
|
$$ = &ast.StmtStatic{
|
|
|
|
Vars: []ast.Vertex{
|
|
|
|
&ast.StmtStaticVar{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $3),
|
2020-12-03 22:13:28 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-09-09 19:53:51 +00:00
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-01-31 10:29:38 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
class_statement_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
class_statement_list class_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| /* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
class_statement:
|
2018-02-03 17:33:22 +00:00
|
|
|
variable_modifiers class_variable_declaration ';'
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
$$ = &ast.StmtPropertyList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListTokenPosition($1, $3),
|
2020-11-29 19:50:33 +00:00
|
|
|
Modifiers: $1,
|
|
|
|
Properties: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
SemiColonTkn: $3,
|
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| class_constant_declaration ';'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-08-24 20:28:44 +00:00
|
|
|
$1.(*ast.StmtClassConstList).SemiColonTkn = $2
|
2020-12-08 00:08:59 +00:00
|
|
|
$1.(*ast.StmtClassConstList).Position = yylex.(*Parser).builder.NewNodeTokenPosition($1, $2)
|
2018-06-06 23:25:27 +00:00
|
|
|
$$ = $1
|
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| trait_use_statement
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
|
|
|
$$ = $1
|
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
| method_modifiers function is_reference T_STRING '(' parameter_list ')' method_body
|
|
|
|
{
|
2020-12-08 00:08:59 +00:00
|
|
|
pos := yylex.(*Parser).builder.NewTokenNodePosition($2, $8)
|
2020-11-22 12:26:24 +00:00
|
|
|
if $1 != nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
pos = yylex.(*Parser).builder.NewNodeListNodePosition($1, $8)
|
2018-06-03 06:35:44 +00:00
|
|
|
}
|
|
|
|
|
2020-11-22 12:26:24 +00:00
|
|
|
$$ = &ast.StmtClassMethod{
|
2020-12-07 22:04:12 +00:00
|
|
|
Position: pos,
|
2020-11-22 12:26:24 +00:00
|
|
|
Modifiers: $1,
|
|
|
|
FunctionTkn: $2,
|
|
|
|
AmpersandTkn: $3,
|
|
|
|
MethodName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-11-22 12:26:24 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
|
|
|
},
|
|
|
|
OpenParenthesisTkn: $5,
|
2020-12-04 10:22:06 +00:00
|
|
|
Params: $6.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $6.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-11-22 12:26:24 +00:00
|
|
|
CloseParenthesisTkn: $7,
|
|
|
|
Stmt: $8,
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_use_statement:
|
2018-01-29 14:11:45 +00:00
|
|
|
T_USE trait_list trait_adaptations
|
2018-02-03 22:09:37 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = &ast.StmtTraitUse{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $3),
|
2020-11-22 11:02:36 +00:00
|
|
|
UseTkn: $1,
|
|
|
|
Traits: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
Adaptations: $3,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_list:
|
2018-02-03 22:09:37 +00:00
|
|
|
fully_qualified_class_name
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
| trait_list ',' fully_qualified_class_name
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-11-29 21:43:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_adaptations:
|
2018-01-29 14:11:45 +00:00
|
|
|
';'
|
2018-04-29 19:34:24 +00:00
|
|
|
{
|
2020-09-14 16:34:02 +00:00
|
|
|
$$ = &ast.StmtNop{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-09-14 16:34:02 +00:00
|
|
|
SemiColonTkn: $1,
|
|
|
|
}
|
2018-04-29 19:34:24 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| '{' trait_adaptation_list '}'
|
2018-04-29 19:34:24 +00:00
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
$$ = &ast.StmtTraitAdaptationList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-11 07:54:26 +00:00
|
|
|
OpenCurlyBracketTkn: $1,
|
|
|
|
Adaptations: $2,
|
|
|
|
CloseCurlyBracketTkn: $3,
|
2020-11-29 19:50:33 +00:00
|
|
|
}
|
2018-04-29 19:34:24 +00:00
|
|
|
}
|
2017-11-29 21:43:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_adaptation_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| non_empty_trait_adaptation_list
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
non_empty_trait_adaptation_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
trait_adaptation_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{$1}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| non_empty_trait_adaptation_list trait_adaptation_statement
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-29 21:43:39 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
trait_adaptation_statement:
|
2018-01-29 14:11:45 +00:00
|
|
|
trait_precedence ';'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 10:49:13 +00:00
|
|
|
$1.(*ast.StmtTraitUsePrecedence).SemiColonTkn = $2
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-04 10:49:13 +00:00
|
|
|
$$ = $1;
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| trait_alias ';'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 10:49:13 +00:00
|
|
|
$1.(*ast.StmtTraitUseAlias).SemiColonTkn = $2
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-04 10:49:13 +00:00
|
|
|
$$ = $1;
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-11-29 21:43:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_precedence:
|
2018-02-03 22:09:37 +00:00
|
|
|
trait_method_reference_fully_qualified T_INSTEADOF trait_reference_list
|
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = &ast.StmtTraitUsePrecedence{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeNodeListPosition($1, $3.(*ast.ParserSeparatedList).Items),
|
2020-11-22 11:02:36 +00:00
|
|
|
Ref: $1,
|
|
|
|
InsteadofTkn: $2,
|
|
|
|
Insteadof: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
2018-01-08 22:30:28 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
trait_reference_list:
|
2018-02-03 22:09:37 +00:00
|
|
|
fully_qualified_class_name
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
| trait_reference_list ',' fully_qualified_class_name
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-11-22 11:02:36 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-11-22 11:02:36 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_method_reference:
|
2018-02-03 22:09:37 +00:00
|
|
|
T_STRING
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
$$ = &ast.StmtTraitMethodRef{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-29 19:50:33 +00:00
|
|
|
Method: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-29 19:50:33 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
|
|
|
| trait_method_reference_fully_qualified
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_method_reference_fully_qualified:
|
2018-02-03 22:09:37 +00:00
|
|
|
fully_qualified_class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
$$ = &ast.StmtTraitMethodRef{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $3),
|
2020-11-29 19:50:33 +00:00
|
|
|
Trait: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
Method: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-29 19:50:33 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
2017-11-29 21:43:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_alias:
|
2018-02-03 22:09:37 +00:00
|
|
|
trait_method_reference T_AS trait_modifiers T_STRING
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
$$ = &ast.StmtTraitUseAlias{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-29 19:50:33 +00:00
|
|
|
Ref: $1,
|
|
|
|
AsTkn: $2,
|
|
|
|
Modifier: $3,
|
|
|
|
Alias: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-11-29 19:50:33 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
|
|
|
| trait_method_reference T_AS member_modifier
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
$$ = &ast.StmtTraitUseAlias{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-11-29 19:50:33 +00:00
|
|
|
Ref: $1,
|
|
|
|
AsTkn: $2,
|
|
|
|
Modifier: $3,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
2017-11-29 21:43:39 +00:00
|
|
|
;
|
2017-12-01 07:15:46 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
trait_modifiers:
|
2018-02-03 22:09:37 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
| member_modifier
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-29 22:07:15 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
method_body:
|
2020-05-13 17:18:53 +00:00
|
|
|
';' /* abstract method */
|
2018-06-03 06:35:44 +00:00
|
|
|
{
|
2020-09-14 16:34:02 +00:00
|
|
|
$$ = &ast.StmtNop{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-09-14 16:34:02 +00:00
|
|
|
SemiColonTkn: $1,
|
|
|
|
}
|
2018-06-03 06:35:44 +00:00
|
|
|
}
|
2018-02-03 22:37:43 +00:00
|
|
|
| '{' inner_statement_list '}'
|
2018-06-03 06:35:44 +00:00
|
|
|
{
|
2020-09-02 19:58:19 +00:00
|
|
|
$$ = &ast.StmtStmtList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-11 15:29:22 +00:00
|
|
|
OpenCurlyBracketTkn: $1,
|
|
|
|
Stmts: $2,
|
|
|
|
CloseCurlyBracketTkn: $3,
|
2020-09-02 19:58:19 +00:00
|
|
|
}
|
2018-06-03 06:35:44 +00:00
|
|
|
}
|
2017-11-29 22:07:15 +00:00
|
|
|
;
|
2017-11-29 21:43:39 +00:00
|
|
|
|
2017-11-29 14:21:44 +00:00
|
|
|
variable_modifiers:
|
2018-02-03 22:37:43 +00:00
|
|
|
non_empty_member_modifiers
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1;
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 22:37:43 +00:00
|
|
|
| T_VAR
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = []ast.Vertex{
|
|
|
|
&ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
}
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
2017-11-29 14:21:44 +00:00
|
|
|
;
|
|
|
|
|
2017-11-29 20:56:37 +00:00
|
|
|
method_modifiers:
|
2018-02-03 22:37:43 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 22:37:43 +00:00
|
|
|
| non_empty_member_modifiers
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
2017-11-29 20:56:37 +00:00
|
|
|
|
2017-11-29 14:21:44 +00:00
|
|
|
non_empty_member_modifiers:
|
2018-02-03 22:37:43 +00:00
|
|
|
member_modifier
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{$1}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 22:37:43 +00:00
|
|
|
| non_empty_member_modifiers member_modifier
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-29 14:21:44 +00:00
|
|
|
;
|
2017-12-01 07:15:46 +00:00
|
|
|
|
2017-11-29 14:21:44 +00:00
|
|
|
member_modifier:
|
2018-02-03 22:09:37 +00:00
|
|
|
T_PUBLIC
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
|
|
|
| T_PROTECTED
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
|
|
|
| T_PRIVATE
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
|
|
|
| T_STATIC
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
|
|
|
| T_ABSTRACT
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
|
|
|
| T_FINAL
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-03 22:09:37 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
class_variable_declaration:
|
2018-02-03 22:37:43 +00:00
|
|
|
class_variable_declaration ',' T_VARIABLE
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
item := &ast.StmtProperty{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-22 16:54:13 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-22 16:54:13 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-22 16:54:13 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-11-29 19:50:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, item)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
|
|
|
| class_variable_declaration ',' T_VARIABLE '=' static_scalar
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
item := &ast.StmtProperty{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($3, $5),
|
2020-11-22 16:54:13 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-22 16:54:13 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-22 16:54:13 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
EqualTkn: $4,
|
|
|
|
Expr: $5,
|
2020-11-29 19:50:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, item)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.StmtProperty{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-29 19:50:33 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-29 19:50:33 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-29 19:50:33 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-11-22 16:54:13 +00:00
|
|
|
},
|
2020-11-29 19:50:33 +00:00
|
|
|
Expr: nil,
|
2020-11-22 16:54:13 +00:00
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE '=' static_scalar
|
|
|
|
{
|
2020-11-29 19:50:33 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.StmtProperty{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $3),
|
2020-11-29 19:50:33 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-29 19:50:33 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-29 19:50:33 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-11-22 16:54:13 +00:00
|
|
|
},
|
2020-11-29 19:50:33 +00:00
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
2020-11-22 16:54:13 +00:00
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
class_constant_declaration:
|
2018-02-03 22:37:43 +00:00
|
|
|
class_constant_declaration ',' T_STRING '=' static_scalar
|
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
constList := $1.(*ast.StmtClassConstList)
|
2020-12-08 00:08:59 +00:00
|
|
|
constList.Position = yylex.(*Parser).builder.NewNodesPosition($1, $5)
|
2020-12-04 12:38:47 +00:00
|
|
|
constList.SeparatorTkns = append(constList.SeparatorTkns, $2)
|
2020-08-24 20:28:44 +00:00
|
|
|
constList.Consts = append(constList.Consts, &ast.StmtConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($3, $5),
|
2020-08-24 20:28:44 +00:00
|
|
|
Name: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-08-24 20:28:44 +00:00
|
|
|
},
|
|
|
|
EqualTkn: $4,
|
|
|
|
Expr: $5,
|
|
|
|
})
|
2018-02-03 22:37:43 +00:00
|
|
|
|
2020-08-24 20:28:44 +00:00
|
|
|
$$ = $1
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
|
|
|
| T_CONST T_STRING '=' static_scalar
|
|
|
|
{
|
2020-08-24 20:28:44 +00:00
|
|
|
$$ = &ast.StmtClassConstList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $4),
|
2020-08-24 20:28:44 +00:00
|
|
|
ConstTkn: $1,
|
|
|
|
Consts: []ast.Vertex{
|
|
|
|
&ast.StmtConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($2, $4),
|
2020-08-24 20:28:44 +00:00
|
|
|
Name: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
2020-08-24 20:28:44 +00:00
|
|
|
},
|
|
|
|
EqualTkn: $3,
|
|
|
|
Expr: $4,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
2017-11-27 22:37:17 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
echo_expr_list:
|
2018-02-03 12:29:23 +00:00
|
|
|
echo_expr_list ',' expr
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-09-10 20:11:08 +00:00
|
|
|
$1.(*ast.StmtEcho).Exprs = append($1.(*ast.StmtEcho).Exprs, $3)
|
|
|
|
$1.(*ast.StmtEcho).SeparatorTkns = append($1.(*ast.StmtEcho).SeparatorTkns, $2)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-09-10 20:11:08 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| expr
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-09-10 20:11:08 +00:00
|
|
|
$$ = &ast.StmtEcho{
|
|
|
|
Exprs: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
for_expr:
|
2018-02-03 12:29:23 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 10:49:13 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| non_empty_for_expr
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-27 22:37:17 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
non_empty_for_expr:
|
2018-02-03 12:29:23 +00:00
|
|
|
non_empty_for_expr ',' expr
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 10:49:13 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-04 10:49:13 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| expr
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 10:49:13 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-27 22:37:17 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
chaining_method_or_property:
|
2018-02-04 16:51:44 +00:00
|
|
|
chaining_method_or_property variable_property
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2...)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
| variable_property
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-27 22:37:17 +00:00
|
|
|
;
|
2018-01-27 10:33:13 +00:00
|
|
|
|
|
|
|
chaining_dereference:
|
2018-02-04 16:51:44 +00:00
|
|
|
chaining_dereference '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
fetch := &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($2, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: nil,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = append($1, fetch)
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
| '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
fetch := &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: nil,
|
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Dim: $2,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2020-05-13 17:18:53 +00:00
|
|
|
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = []ast.Vertex{fetch}
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
2017-11-27 22:37:17 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
chaining_instance_call:
|
2018-02-04 16:51:44 +00:00
|
|
|
chaining_dereference chaining_method_or_property
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2...)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
| chaining_dereference
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
| chaining_method_or_property
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
2018-01-08 22:30:28 +00:00
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
instance_call:
|
2018-02-04 16:51:44 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
| chaining_instance_call
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-27 22:37:17 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
new_expr:
|
2018-02-01 14:07:18 +00:00
|
|
|
T_NEW class_name_reference ctor_arguments
|
|
|
|
{
|
|
|
|
if $3 != nil {
|
2020-12-03 20:04:59 +00:00
|
|
|
$$ = &ast.ExprNew{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $3),
|
2020-12-03 20:04:59 +00:00
|
|
|
NewTkn: $1,
|
|
|
|
Class: $2,
|
|
|
|
OpenParenthesisTkn: $3.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $3.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $3.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $3.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-12-03 20:04:59 +00:00
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
} else {
|
2020-12-03 20:04:59 +00:00
|
|
|
$$ = &ast.ExprNew{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 20:04:59 +00:00
|
|
|
Class: $2,
|
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-28 16:00:27 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
expr_without_variable:
|
2018-02-01 10:35:43 +00:00
|
|
|
T_LIST '(' assignment_list ')' '=' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssign{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $6),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: &ast.ExprList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-04 08:40:48 +00:00
|
|
|
ListTkn: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Items: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
},
|
|
|
|
EqualTkn: $5,
|
|
|
|
Expr: $6,
|
2020-11-30 21:42:56 +00:00
|
|
|
}
|
2018-02-01 10:35:43 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| variable '=' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssign{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable '=' '&' variable
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $4),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
AmpersandTkn: $3,
|
|
|
|
Expr: $4,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable '=' '&' T_NEW class_name_reference ctor_arguments
|
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
var _new *ast.ExprNew
|
2020-12-03 20:04:59 +00:00
|
|
|
if $3 != nil {
|
|
|
|
_new = &ast.ExprNew{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($4, $6),
|
2020-12-03 20:04:59 +00:00
|
|
|
NewTkn: $4,
|
|
|
|
Class: $5,
|
|
|
|
OpenParenthesisTkn: $6.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $6.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $6.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $6.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-12-03 20:04:59 +00:00
|
|
|
}
|
2018-04-29 16:58:49 +00:00
|
|
|
} else {
|
2020-12-03 20:04:59 +00:00
|
|
|
_new = &ast.ExprNew{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($4, $5),
|
2020-12-03 20:04:59 +00:00
|
|
|
NewTkn: $4,
|
|
|
|
Class: $5,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
2020-12-03 20:04:59 +00:00
|
|
|
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, _new),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
AmpersandTkn: $3,
|
|
|
|
Expr: _new,
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_CLONE expr
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprClone{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-01 07:51:47 +00:00
|
|
|
CloneTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_PLUS_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignPlus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_MINUS_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignMinus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_MUL_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignMul{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_POW_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignPow{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_DIV_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignDiv{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_CONCAT_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignConcat{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_MOD_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignMod{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_AND_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignBitwiseAnd{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_OR_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignBitwiseOr{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_XOR_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignBitwiseXor{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_SL_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignShiftLeft{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| variable T_SR_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprAssignShiftRight{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Var: $1,
|
|
|
|
EqualTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| rw_variable T_INC
|
|
|
|
{
|
2020-12-03 20:04:59 +00:00
|
|
|
$$ = &ast.ExprPostInc{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $2),
|
2020-12-03 20:04:59 +00:00
|
|
|
Var: $1,
|
|
|
|
IncTkn: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_INC rw_variable
|
|
|
|
{
|
2020-12-03 20:04:59 +00:00
|
|
|
$$ = &ast.ExprPreInc{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 20:04:59 +00:00
|
|
|
IncTkn: $1,
|
|
|
|
Var: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| rw_variable T_DEC
|
|
|
|
{
|
2020-12-03 20:04:59 +00:00
|
|
|
$$ = &ast.ExprPostDec{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $2),
|
2020-12-03 20:04:59 +00:00
|
|
|
Var: $1,
|
|
|
|
DecTkn: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_DEC rw_variable
|
|
|
|
{
|
2020-12-03 20:04:59 +00:00
|
|
|
$$ = &ast.ExprPreDec{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 20:04:59 +00:00
|
|
|
DecTkn: $1,
|
|
|
|
Var: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_BOOLEAN_OR expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBooleanOr{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_BOOLEAN_AND expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBooleanAnd{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_LOGICAL_OR expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryLogicalOr{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_LOGICAL_AND expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryLogicalAnd{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_LOGICAL_XOR expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryLogicalXor{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '|' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBitwiseOr{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '&' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBitwiseAnd{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '^' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBitwiseXor{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '.' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryConcat{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '+' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryPlus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '-' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryMinus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '*' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryMul{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_POW expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryPow{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '/' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryDiv{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '%' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryMod{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_SL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryShiftLeft{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_SR expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryShiftRight{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| '+' expr %prec T_INC
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprUnaryPlus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 22:13:28 +00:00
|
|
|
PlusTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| '-' expr %prec T_INC
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprUnaryMinus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 22:13:28 +00:00
|
|
|
MinusTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| '!' expr
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprBooleanNot{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-01 07:51:47 +00:00
|
|
|
ExclamationTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| '~' expr
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprBitwiseNot{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-01 07:51:47 +00:00
|
|
|
TildaTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_IS_IDENTICAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryIdentical{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_IS_NOT_IDENTICAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryNotIdentical{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_IS_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryEqual{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_IS_NOT_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryNotEqual{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '<' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinarySmaller{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_IS_SMALLER_OR_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinarySmallerOrEqual{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '>' expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryGreater{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_IS_GREATER_OR_EQUAL expr
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryGreaterOrEqual{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr T_INSTANCEOF class_name_reference
|
|
|
|
{
|
2020-12-01 10:16:46 +00:00
|
|
|
$$ = &ast.ExprInstanceOf{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-01 10:16:46 +00:00
|
|
|
Expr: $1,
|
|
|
|
InstanceOfTkn: $2,
|
|
|
|
Class: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| parenthesis_expr
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
| new_expr
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
| '(' new_expr ')' instance_call
|
|
|
|
{
|
2020-12-04 10:58:56 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-04 10:58:56 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: $2,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2019-01-03 17:03:20 +00:00
|
|
|
|
2018-02-04 16:51:44 +00:00
|
|
|
for _, n := range($4) {
|
|
|
|
switch nn := n.(type) {
|
2020-12-03 19:42:16 +00:00
|
|
|
case *ast.ExprFunctionCall:
|
|
|
|
nn.Function = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2020-12-03 19:42:16 +00:00
|
|
|
$$ = nn
|
|
|
|
|
2020-05-13 17:18:53 +00:00
|
|
|
case *ast.ExprArrayDimFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2020-05-13 17:18:53 +00:00
|
|
|
|
|
|
|
case *ast.ExprPropertyFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2020-05-13 17:18:53 +00:00
|
|
|
|
|
|
|
case *ast.ExprMethodCall:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| expr '?' expr ':' expr
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprTernary{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $5),
|
2020-12-03 20:41:08 +00:00
|
|
|
Condition: $1,
|
|
|
|
QuestionTkn: $2,
|
|
|
|
IfTrue: $3,
|
|
|
|
ColonTkn: $4,
|
|
|
|
IfFalse: $5,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| expr '?' ':' expr
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprTernary{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $4),
|
2020-12-03 20:41:08 +00:00
|
|
|
Condition: $1,
|
|
|
|
QuestionTkn: $2,
|
|
|
|
ColonTkn: $3,
|
|
|
|
IfFalse: $4,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| internal_functions_in_yacc
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| T_INT_CAST expr
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprCastInt{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
CastTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_DOUBLE_CAST expr
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprCastDouble{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
CastTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_STRING_CAST expr
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprCastString{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
CastTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_ARRAY_CAST expr
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprCastArray{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
CastTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_OBJECT_CAST expr
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprCastObject{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
CastTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_BOOL_CAST expr
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprCastBool{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
CastTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_UNSET_CAST expr
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprCastUnset{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
CastTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_EXIT exit_expr
|
|
|
|
{
|
2020-12-01 09:58:09 +00:00
|
|
|
exit := &ast.ExprExit{
|
|
|
|
DieTkn: $1,
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
|
|
|
|
2020-08-09 20:40:55 +00:00
|
|
|
if $2 == nil {
|
2020-12-08 00:08:59 +00:00
|
|
|
exit.Position = yylex.(*Parser).builder.NewTokenPosition($1)
|
2018-06-06 23:25:27 +00:00
|
|
|
} else {
|
2020-12-08 00:08:59 +00:00
|
|
|
exit.Position = yylex.(*Parser).builder.NewTokenNodePosition($1, $2)
|
2020-12-01 09:58:09 +00:00
|
|
|
exit.OpenParenthesisTkn = $2.(*ast.ParserBrackets).OpenBracketTkn
|
|
|
|
exit.Expr = $2.(*ast.ParserBrackets).Child
|
|
|
|
exit.CloseParenthesisTkn = $2.(*ast.ParserBrackets).CloseBracketTkn
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
|
|
|
|
2020-12-01 09:58:09 +00:00
|
|
|
$$ = exit
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| '@' expr
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprErrorSuppress{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-01 09:12:56 +00:00
|
|
|
AtTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| scalar
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| combined_scalar_offset
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| combined_scalar
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| '`' backticks_expr '`'
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprShellExec{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-03 20:41:08 +00:00
|
|
|
OpenBacktickTkn: $1,
|
|
|
|
Parts: $2,
|
|
|
|
CloseBacktickTkn: $3,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_PRINT expr
|
|
|
|
{
|
2020-12-03 20:20:50 +00:00
|
|
|
$$ = &ast.ExprPrint{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 20:20:50 +00:00
|
|
|
PrintTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_YIELD
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprYield{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-04 07:42:45 +00:00
|
|
|
YieldTkn: $1,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| function is_reference '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
|
|
|
|
{
|
2020-11-22 12:26:24 +00:00
|
|
|
$$ = &ast.ExprClosure{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $9),
|
2020-11-22 12:26:24 +00:00
|
|
|
FunctionTkn: $1,
|
|
|
|
AmpersandTkn: $2,
|
|
|
|
OpenParenthesisTkn: $3,
|
2020-12-04 10:22:06 +00:00
|
|
|
Params: $4.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $4.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-11-22 12:26:24 +00:00
|
|
|
CloseParenthesisTkn: $5,
|
|
|
|
ClosureUse: $6,
|
|
|
|
OpenCurlyBracketTkn: $7,
|
|
|
|
Stmts: $8,
|
|
|
|
CloseCurlyBracketTkn: $9,
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_STATIC function is_reference '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
|
|
|
|
{
|
2020-11-22 12:26:24 +00:00
|
|
|
$$ = &ast.ExprClosure{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $10),
|
2020-11-22 12:26:24 +00:00
|
|
|
StaticTkn: $1,
|
|
|
|
FunctionTkn: $2,
|
|
|
|
AmpersandTkn: $3,
|
|
|
|
OpenParenthesisTkn: $4,
|
2020-12-04 10:22:06 +00:00
|
|
|
Params: $5.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $5.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-11-22 12:26:24 +00:00
|
|
|
CloseParenthesisTkn: $6,
|
|
|
|
ClosureUse: $7,
|
|
|
|
OpenCurlyBracketTkn: $8,
|
|
|
|
Stmts: $9,
|
|
|
|
CloseCurlyBracketTkn: $10,
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
yield_expr:
|
2018-02-04 17:37:27 +00:00
|
|
|
T_YIELD expr_without_variable
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprYield{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
YieldTkn: $1,
|
|
|
|
Value: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_YIELD variable
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprYield{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-04 07:42:45 +00:00
|
|
|
YieldTkn: $1,
|
|
|
|
Value: $2,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_YIELD expr T_DOUBLE_ARROW expr_without_variable
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprYield{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $4),
|
2020-12-04 07:42:45 +00:00
|
|
|
YieldTkn: $1,
|
|
|
|
Key: $2,
|
|
|
|
DoubleArrowTkn: $3,
|
|
|
|
Value: $4,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
|
|
|
| T_YIELD expr T_DOUBLE_ARROW variable
|
|
|
|
{
|
2020-12-04 07:42:45 +00:00
|
|
|
$$ = &ast.ExprYield{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $4),
|
2020-12-04 07:42:45 +00:00
|
|
|
YieldTkn: $1,
|
|
|
|
Key: $2,
|
|
|
|
DoubleArrowTkn: $3,
|
|
|
|
Value: $4,
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
combined_scalar_offset:
|
2018-02-02 12:36:57 +00:00
|
|
|
combined_scalar '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| combined_scalar_offset '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_CONSTANT_ENCAPSED_STRING '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: &ast.ScalarString{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-30 22:42:45 +00:00
|
|
|
StringTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
2020-11-20 21:53:58 +00:00
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| general_constant '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
combined_scalar:
|
2018-02-02 12:36:57 +00:00
|
|
|
T_ARRAY '(' array_pair_list ')'
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ExprArray{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-11-30 21:42:56 +00:00
|
|
|
ArrayTkn: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Items: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| '[' array_pair_list ']'
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ExprArray{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-11-30 21:42:56 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Items: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
function:
|
2018-02-02 12:36:57 +00:00
|
|
|
T_FUNCTION
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = $1
|
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2017-11-30 19:14:26 +00:00
|
|
|
lexical_vars:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_USE '(' lexical_var_list ')'
|
2018-05-25 06:38:44 +00:00
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprClosureUse{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-01 09:12:56 +00:00
|
|
|
UseTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
Uses: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseParenthesisTkn: $4,
|
|
|
|
}
|
2018-05-25 06:38:44 +00:00
|
|
|
}
|
2017-11-30 19:14:26 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
lexical_var_list:
|
2018-02-02 12:36:57 +00:00
|
|
|
lexical_var_list ',' T_VARIABLE
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
variable := &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-01 09:12:56 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-01 09:12:56 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-01 09:12:56 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, variable)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = $1
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| lexical_var_list ',' '&' T_VARIABLE
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
reference := &ast.ExprReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($3, $4),
|
2020-12-03 20:20:50 +00:00
|
|
|
AmpersandTkn: $3,
|
2020-12-01 09:12:56 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-01 09:12:56 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($4),
|
2020-12-01 09:12:56 +00:00
|
|
|
IdentifierTkn: $4,
|
|
|
|
Value: $4.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-01 09:12:56 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, reference)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = $1
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-01 09:12:56 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-01 09:12:56 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| '&' T_VARIABLE
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.ExprReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-12-03 20:20:50 +00:00
|
|
|
AmpersandTkn: $1,
|
2020-12-01 09:12:56 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-12-01 09:12:56 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-12-01 09:12:56 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
2017-11-28 16:00:27 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
function_call:
|
2018-02-03 18:13:11 +00:00
|
|
|
namespace_name function_call_parameter_list
|
|
|
|
{
|
2020-12-01 09:58:09 +00:00
|
|
|
$$ = &ast.ExprFunctionCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListNodePosition($1.(*ast.ParserSeparatedList).Items, $2),
|
2020-12-01 09:58:09 +00:00
|
|
|
Function: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:58:09 +00:00
|
|
|
},
|
|
|
|
OpenParenthesisTkn: $2.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $2.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $2.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $2.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name function_call_parameter_list
|
|
|
|
{
|
2020-12-01 09:58:09 +00:00
|
|
|
$$ = &ast.ExprFunctionCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $4),
|
2020-12-01 09:58:09 +00:00
|
|
|
Function: &ast.NameRelative{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $3.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:58:09 +00:00
|
|
|
NsTkn: $1,
|
|
|
|
NsSeparatorTkn: $2,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:58:09 +00:00
|
|
|
},
|
|
|
|
OpenParenthesisTkn: $4.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $4.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $4.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $4.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name function_call_parameter_list
|
|
|
|
{
|
2020-12-01 09:58:09 +00:00
|
|
|
$$ = &ast.ExprFunctionCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $3),
|
2020-12-01 09:58:09 +00:00
|
|
|
Function: &ast.NameFullyQualified{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:58:09 +00:00
|
|
|
NsSeparatorTkn: $1,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:58:09 +00:00
|
|
|
},
|
|
|
|
OpenParenthesisTkn: $3.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $3.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $3.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $3.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| class_name T_PAAMAYIM_NEKUDOTAYIM variable_name function_call_parameter_list
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprStaticCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $4),
|
2020-12-03 20:41:08 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
Call: $3,
|
|
|
|
OpenParenthesisTkn: $4.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $4.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $4.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $4.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-12-03 20:41:08 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects function_call_parameter_list
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprStaticCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $4),
|
2020-12-03 20:41:08 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
Call: $3,
|
|
|
|
OpenParenthesisTkn: $4.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $4.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $4.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $4.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-12-03 20:41:08 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_name function_call_parameter_list
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprStaticCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $4),
|
2020-12-03 20:41:08 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
Call: $3,
|
|
|
|
OpenParenthesisTkn: $4.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $4.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $4.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $4.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-12-03 20:41:08 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects function_call_parameter_list
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprStaticCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $4),
|
2020-12-03 20:41:08 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
Call: $3,
|
|
|
|
OpenParenthesisTkn: $4.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $4.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $4.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $4.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-12-03 20:41:08 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
|
|
|
| variable_without_objects function_call_parameter_list
|
|
|
|
{
|
2020-12-01 09:58:09 +00:00
|
|
|
$$ = &ast.ExprFunctionCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $2),
|
2020-12-01 09:58:09 +00:00
|
|
|
Function: $1,
|
|
|
|
OpenParenthesisTkn: $2.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $2.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $2.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: $2.(*ast.ArgumentList).CloseParenthesisTkn,
|
2020-12-01 09:58:09 +00:00
|
|
|
}
|
2018-02-03 18:13:11 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
class_name:
|
2018-01-29 14:37:09 +00:00
|
|
|
T_STATIC
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:37:09 +00:00
|
|
|
}
|
2020-05-13 17:18:53 +00:00
|
|
|
| namespace_name
|
2018-01-29 14:37:09 +00:00
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-01-29 14:37:09 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.NameRelative{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $3.(*ast.ParserSeparatedList).Items),
|
2020-08-24 11:20:20 +00:00
|
|
|
NsTkn: $1,
|
|
|
|
NsSeparatorTkn: $2,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-01-29 14:37:09 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.NameFullyQualified{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-08-24 11:20:20 +00:00
|
|
|
NsSeparatorTkn: $1,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-01-29 14:37:09 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
fully_qualified_class_name:
|
2018-02-02 12:36:57 +00:00
|
|
|
namespace_name
|
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.NameRelative{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $3.(*ast.ParserSeparatedList).Items),
|
2020-08-24 11:20:20 +00:00
|
|
|
NsTkn: $1,
|
|
|
|
NsSeparatorTkn: $2,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-08-24 11:20:20 +00:00
|
|
|
$$ = &ast.NameFullyQualified{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-08-24 11:20:20 +00:00
|
|
|
NsSeparatorTkn: $1,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
class_name_reference:
|
2018-02-01 14:07:18 +00:00
|
|
|
class_name
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
| dynamic_class_name_reference
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
dynamic_class_name_reference:
|
2018-02-01 14:07:18 +00:00
|
|
|
base_variable T_OBJECT_OPERATOR object_property dynamic_class_name_variable_properties
|
|
|
|
{
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = $1
|
2018-02-01 14:07:18 +00:00
|
|
|
|
2020-12-04 10:58:56 +00:00
|
|
|
$3[0].(*ast.ExprPropertyFetch).ObjectOperatorTkn = $2
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2018-02-04 16:51:44 +00:00
|
|
|
for _, n := range($3) {
|
|
|
|
switch nn := n.(type) {
|
2020-05-13 17:18:53 +00:00
|
|
|
case *ast.ExprArrayDimFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
*$$.GetPosition() = *yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2020-05-13 17:18:53 +00:00
|
|
|
|
|
|
|
case *ast.ExprPropertyFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
*$$.GetPosition() = *yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-04 16:51:44 +00:00
|
|
|
for _, n := range($4) {
|
|
|
|
switch nn := n.(type) {
|
2020-05-13 17:18:53 +00:00
|
|
|
case *ast.ExprArrayDimFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
*$$.GetPosition() = *yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2020-05-13 17:18:53 +00:00
|
|
|
|
|
|
|
case *ast.ExprPropertyFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
*$$.GetPosition() = *yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-13 17:18:53 +00:00
|
|
|
| base_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
dynamic_class_name_variable_properties:
|
2018-01-29 14:11:45 +00:00
|
|
|
dynamic_class_name_variable_properties dynamic_class_name_variable_property
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2...)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| /* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
dynamic_class_name_variable_property:
|
2018-02-01 14:07:18 +00:00
|
|
|
T_OBJECT_OPERATOR object_property
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 10:49:13 +00:00
|
|
|
$2[0].(*ast.ExprPropertyFetch).ObjectOperatorTkn = $1
|
2020-05-13 17:18:53 +00:00
|
|
|
|
2020-12-04 10:49:13 +00:00
|
|
|
$$ = $2
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
exit_expr:
|
2018-02-02 13:01:03 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-08-09 20:40:55 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-02 13:01:03 +00:00
|
|
|
| '(' ')'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-09-03 19:18:06 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
CloseBracketTkn: $2,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
|
|
|
| parenthesis_expr
|
|
|
|
{
|
2020-08-09 20:40:55 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
backticks_expr:
|
2018-02-04 17:37:27 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| T_ENCAPSED_AND_WHITESPACE
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-11-20 21:36:45 +00:00
|
|
|
$$ = []ast.Vertex{
|
|
|
|
&ast.ScalarEncapsedStringPart{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:36:45 +00:00
|
|
|
EncapsedStrTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| encaps_list
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1;
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
ctor_arguments:
|
2018-02-01 14:07:18 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-04 20:38:26 +00:00
|
|
|
$$ = &ast.ArgumentList{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
| function_call_parameter_list
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
common_scalar:
|
2018-01-29 14:22:04 +00:00
|
|
|
T_LNUMBER
|
|
|
|
{
|
2020-11-20 21:08:30 +00:00
|
|
|
$$ = &ast.ScalarLnumber{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:08:30 +00:00
|
|
|
NumberTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
|
|
|
| T_DNUMBER
|
|
|
|
{
|
2020-11-20 21:08:30 +00:00
|
|
|
$$ = &ast.ScalarDnumber{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:08:30 +00:00
|
|
|
NumberTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
| T_CONSTANT_ENCAPSED_STRING
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarString{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
StringTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
| T_LINE
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
|
|
|
| T_FILE
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
|
|
|
| T_DIR
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
|
|
|
| T_TRAIT_C
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
|
|
|
| T_METHOD_C
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
|
|
|
| T_FUNC_C
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
|
|
|
| T_NS_C
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
}
|
2019-02-13 20:18:07 +00:00
|
|
|
| T_START_HEREDOC T_ENCAPSED_AND_WHITESPACE T_END_HEREDOC
|
2018-01-31 10:55:50 +00:00
|
|
|
{
|
2020-11-20 21:36:45 +00:00
|
|
|
$$ = &ast.ScalarHeredoc{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-11-20 21:36:45 +00:00
|
|
|
OpenHeredocTkn: $1,
|
|
|
|
Parts: []ast.Vertex{
|
|
|
|
&ast.ScalarEncapsedStringPart{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-20 21:36:45 +00:00
|
|
|
EncapsedStrTkn: $2,
|
|
|
|
Value: $2.Value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
CloseHeredocTkn: $3,
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_START_HEREDOC T_END_HEREDOC
|
|
|
|
{
|
2020-11-20 21:36:45 +00:00
|
|
|
$$ = &ast.ScalarHeredoc{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $2),
|
2020-11-20 21:36:45 +00:00
|
|
|
OpenHeredocTkn: $1,
|
|
|
|
CloseHeredocTkn: $2,
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static_class_constant:
|
2018-01-29 14:37:09 +00:00
|
|
|
class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprClassConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $3),
|
2020-12-01 07:51:47 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
ConstantName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-01 07:51:47 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:37:09 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
2018-02-04 18:55:45 +00:00
|
|
|
static_scalar:
|
|
|
|
static_scalar_value
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static_scalar_value:
|
2018-02-04 18:55:45 +00:00
|
|
|
common_scalar
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
| static_class_name_scalar
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
| namespace_name
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
Const: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:12:56 +00:00
|
|
|
},
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $3.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
Const: &ast.NameRelative{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $3.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
NsTkn: $1,
|
|
|
|
NsSeparatorTkn: $2,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:12:56 +00:00
|
|
|
},
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
Const: &ast.NameFullyQualified{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
NsSeparatorTkn: $1,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:12:56 +00:00
|
|
|
},
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| T_ARRAY '(' static_array_pair_list ')'
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ExprArray{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-11-30 21:42:56 +00:00
|
|
|
ArrayTkn: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Items: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| '[' static_array_pair_list ']'
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ExprArray{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-11-30 21:42:56 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Items: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_class_constant
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
| T_CLASS_C
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_operation
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static_operation:
|
2018-02-04 18:55:45 +00:00
|
|
|
static_scalar_value '[' static_scalar_value ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '+' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryPlus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '-' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryMinus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '*' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryMul{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_POW static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryPow{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '/' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryDiv{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '%' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryMod{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| '!' static_scalar_value
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprBooleanNot{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-01 07:51:47 +00:00
|
|
|
ExclamationTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| '~' static_scalar_value
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprBitwiseNot{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-01 07:51:47 +00:00
|
|
|
TildaTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '|' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBitwiseOr{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '&' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBitwiseAnd{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '^' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBitwiseXor{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_SL static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryShiftLeft{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_SR static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryShiftRight{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '.' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryConcat{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_LOGICAL_XOR static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryLogicalXor{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_LOGICAL_AND static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryLogicalAnd{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_LOGICAL_OR static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryLogicalOr{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_BOOLEAN_AND static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBooleanAnd{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_BOOLEAN_OR static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryBooleanOr{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_IDENTICAL static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryIdentical{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_NOT_IDENTICAL static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryNotIdentical{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_EQUAL static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryEqual{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_NOT_EQUAL static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryNotEqual{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '<' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinarySmaller{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '>' static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryGreater{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_SMALLER_OR_EQUAL static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinarySmallerOrEqual{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_GREATER_OR_EQUAL static_scalar_value
|
|
|
|
{
|
2020-12-04 08:40:48 +00:00
|
|
|
$$ = &ast.ExprBinaryGreaterOrEqual{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-04 08:40:48 +00:00
|
|
|
Left: $1,
|
|
|
|
OpTkn: $2,
|
|
|
|
Right: $3,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '?' ':' static_scalar_value
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprTernary{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $4),
|
2020-12-03 20:41:08 +00:00
|
|
|
Condition: $1,
|
|
|
|
QuestionTkn: $2,
|
|
|
|
ColonTkn: $3,
|
|
|
|
IfFalse: $4,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value '?' static_scalar_value ':' static_scalar_value
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprTernary{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $5),
|
2020-12-03 20:41:08 +00:00
|
|
|
Condition: $1,
|
|
|
|
QuestionTkn: $2,
|
|
|
|
IfTrue: $3,
|
|
|
|
ColonTkn: $4,
|
|
|
|
IfFalse: $5,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| '+' static_scalar_value
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprUnaryPlus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 22:13:28 +00:00
|
|
|
PlusTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| '-' static_scalar_value
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprUnaryMinus{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 22:13:28 +00:00
|
|
|
MinusTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| '(' static_scalar_value ')'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 10:58:56 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-04 10:58:56 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: $2,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
general_constant:
|
2018-02-02 12:36:57 +00:00
|
|
|
class_constant
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
| namespace_name
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
Const: &ast.NameName{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeListPosition($1.(*ast.ParserSeparatedList).Items),
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $1.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $1.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:12:56 +00:00
|
|
|
},
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $3.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
Const: &ast.NameRelative{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $3.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
NsTkn: $1,
|
|
|
|
NsSeparatorTkn: $2,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:12:56 +00:00
|
|
|
},
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
Const: &ast.NameFullyQualified{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodeListPosition($1, $2.(*ast.ParserSeparatedList).Items),
|
2020-12-01 09:12:56 +00:00
|
|
|
NsSeparatorTkn: $1,
|
2020-12-04 12:38:47 +00:00
|
|
|
Parts: $2.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $2.(*ast.ParserSeparatedList).SeparatorTkns,
|
2020-12-01 09:12:56 +00:00
|
|
|
},
|
2020-08-24 11:20:20 +00:00
|
|
|
}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2017-11-29 23:25:07 +00:00
|
|
|
scalar:
|
2018-01-31 10:55:50 +00:00
|
|
|
T_STRING_VARNAME
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| general_constant
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
| class_name_scalar
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
| common_scalar
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
| '"' encaps_list '"'
|
|
|
|
{
|
2020-11-20 21:36:45 +00:00
|
|
|
$$ = &ast.ScalarEncapsed{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-11 15:29:22 +00:00
|
|
|
OpenQuoteTkn: $1,
|
|
|
|
Parts: $2,
|
|
|
|
CloseQuoteTkn: $3,
|
2020-11-20 21:36:45 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_START_HEREDOC encaps_list T_END_HEREDOC
|
|
|
|
{
|
2020-11-20 21:36:45 +00:00
|
|
|
$$ = &ast.ScalarHeredoc{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-11-20 21:36:45 +00:00
|
|
|
OpenHeredocTkn: $1,
|
|
|
|
Parts: $2,
|
|
|
|
CloseHeredocTkn: $3,
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_CLASS_C
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarMagicConstant{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
MagicConstTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static_array_pair_list:
|
2018-02-04 18:55:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
| non_empty_static_array_pair_list possible_comma
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
|
|
|
if $2 != nil {
|
2020-11-30 21:42:56 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, &ast.ExprArrayItem{})
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2020-11-30 21:42:56 +00:00
|
|
|
|
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
possible_comma:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = nil
|
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| ','
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
|
|
|
$$ = $1
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
non_empty_static_array_pair_list:
|
2018-02-04 18:55:45 +00:00
|
|
|
non_empty_static_array_pair_list ',' static_scalar_value T_DOUBLE_ARROW static_scalar_value
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
arrayItem := &ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($3, $5),
|
2020-11-30 22:42:45 +00:00
|
|
|
Key: $3,
|
|
|
|
DoubleArrowTkn: $4,
|
|
|
|
Val: $5,
|
|
|
|
}
|
2020-11-30 21:42:56 +00:00
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, arrayItem)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| non_empty_static_array_pair_list ',' static_scalar_value
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
arrayItem := &ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($3),
|
2020-11-30 22:42:45 +00:00
|
|
|
Val: $3,
|
|
|
|
}
|
2020-11-30 21:42:56 +00:00
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, arrayItem)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_DOUBLE_ARROW static_scalar_value
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
2020-11-30 22:42:45 +00:00
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-11-30 22:42:45 +00:00
|
|
|
Key: $1,
|
|
|
|
DoubleArrowTkn: $2,
|
|
|
|
Val: $3,
|
|
|
|
},
|
|
|
|
},
|
2020-11-30 21:42:56 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
2020-11-30 22:42:45 +00:00
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-11-30 22:42:45 +00:00
|
|
|
Val: $1,
|
|
|
|
},
|
|
|
|
},
|
2020-11-30 21:42:56 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
2017-11-29 23:25:07 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
expr:
|
2018-02-02 13:01:03 +00:00
|
|
|
r_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-02 13:01:03 +00:00
|
|
|
| expr_without_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-30 18:36:10 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
parenthesis_expr:
|
2018-02-02 13:01:03 +00:00
|
|
|
'(' expr ')'
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-09-03 19:18:06 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: $2,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-02 13:01:03 +00:00
|
|
|
| '(' yield_expr ')'
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-09-03 19:18:06 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-09-03 19:18:06 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: $2,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-30 19:14:26 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
|
|
|
r_variable:
|
2018-01-29 19:12:12 +00:00
|
|
|
variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
w_variable:
|
2018-01-29 19:12:12 +00:00
|
|
|
variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
rw_variable:
|
2018-01-29 19:12:12 +00:00
|
|
|
variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-11-30 18:07:45 +00:00
|
|
|
;
|
|
|
|
|
2017-11-28 16:00:27 +00:00
|
|
|
variable:
|
2018-01-29 19:12:12 +00:00
|
|
|
base_variable_with_function_calls T_OBJECT_OPERATOR object_property method_or_not variable_properties
|
2018-02-04 16:51:44 +00:00
|
|
|
{
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = $1
|
2018-02-04 16:51:44 +00:00
|
|
|
|
2020-12-03 19:42:16 +00:00
|
|
|
$3[0].(*ast.ExprPropertyFetch).ObjectOperatorTkn = $2
|
|
|
|
|
2018-02-04 16:51:44 +00:00
|
|
|
if $4 != nil {
|
2020-12-03 19:42:16 +00:00
|
|
|
last := $3[len($3)-1]
|
|
|
|
switch l := last.(type) {
|
|
|
|
case *ast.ExprArrayDimFetch:
|
|
|
|
mc := $4[0].(*ast.ExprMethodCall)
|
|
|
|
$3 = append($3, &ast.ExprFunctionCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition(mc),
|
2020-12-03 19:42:16 +00:00
|
|
|
OpenParenthesisTkn: mc.OpenParenthesisTkn,
|
|
|
|
Arguments: mc.Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: mc.SeparatorTkns,
|
2020-12-11 07:54:26 +00:00
|
|
|
CloseParenthesisTkn: mc.CloseParenthesisTkn,
|
2020-12-03 19:42:16 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
$3 = append($3, $4[1:len($4)]...)
|
|
|
|
case *ast.ExprPropertyFetch:
|
|
|
|
$4[0].(*ast.ExprMethodCall).Method = l.Property
|
|
|
|
$4[0].(*ast.ExprMethodCall).ObjectOperatorTkn = l.ObjectOperatorTkn
|
|
|
|
$3 = append($3[:len($3)-1], $4...)
|
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, n := range($3) {
|
|
|
|
switch nn := n.(type) {
|
2020-12-03 19:42:16 +00:00
|
|
|
case *ast.ExprFunctionCall:
|
|
|
|
nn.Function = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2020-12-03 19:42:16 +00:00
|
|
|
$$ = nn
|
|
|
|
|
2020-05-13 17:18:53 +00:00
|
|
|
case *ast.ExprArrayDimFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2020-05-13 17:18:53 +00:00
|
|
|
|
|
|
|
case *ast.ExprPropertyFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2020-05-13 17:18:53 +00:00
|
|
|
|
|
|
|
case *ast.ExprMethodCall:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, n := range($5) {
|
|
|
|
switch nn := n.(type) {
|
2020-12-03 19:42:16 +00:00
|
|
|
case *ast.ExprFunctionCall:
|
|
|
|
nn.Function = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2020-12-03 19:42:16 +00:00
|
|
|
$$ = nn
|
|
|
|
|
2020-05-13 17:18:53 +00:00
|
|
|
case *ast.ExprArrayDimFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2020-05-13 17:18:53 +00:00
|
|
|
|
|
|
|
case *ast.ExprPropertyFetch:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2020-05-13 17:18:53 +00:00
|
|
|
|
|
|
|
case *ast.ExprMethodCall:
|
|
|
|
nn.Var = $$
|
2020-12-08 00:08:59 +00:00
|
|
|
nn.Position = yylex.(*Parser).builder.NewNodesPosition($$, nn)
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 19:12:12 +00:00
|
|
|
| base_variable_with_function_calls
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
variable_properties:
|
2018-02-04 16:51:44 +00:00
|
|
|
variable_properties variable_property
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2...)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
| /* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
variable_property:
|
2018-02-04 16:51:44 +00:00
|
|
|
T_OBJECT_OPERATOR object_property method_or_not
|
2020-12-03 19:42:16 +00:00
|
|
|
{println("FOOFOOFOOFOOFOOFOOFOOFOOFOO")
|
|
|
|
$2[0].(*ast.ExprPropertyFetch).ObjectOperatorTkn = $1
|
|
|
|
|
2018-02-04 16:51:44 +00:00
|
|
|
if $3 != nil {
|
2020-12-03 19:42:16 +00:00
|
|
|
last := $2[len($2)-1]
|
|
|
|
switch l := last.(type) {
|
|
|
|
case *ast.ExprArrayDimFetch:
|
|
|
|
mc := $3[0].(*ast.ExprMethodCall)
|
|
|
|
$2 = append($2, &ast.ExprFunctionCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition(mc),
|
2020-12-03 19:42:16 +00:00
|
|
|
OpenParenthesisTkn: mc.OpenParenthesisTkn,
|
|
|
|
Arguments: mc.Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: mc.SeparatorTkns,
|
2020-12-03 19:42:16 +00:00
|
|
|
CloseParenthesisTkn: mc.OpenParenthesisTkn,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
$2 = append($2, $3[1:len($3)]...)
|
|
|
|
case *ast.ExprPropertyFetch:
|
|
|
|
$3[0].(*ast.ExprMethodCall).Method = l.Property
|
|
|
|
$3[0].(*ast.ExprMethodCall).ObjectOperatorTkn = l.ObjectOperatorTkn
|
|
|
|
$2 = append($2[:len($2)-1], $3...)
|
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
|
2018-02-14 19:21:32 +00:00
|
|
|
$$ = $2
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
array_method_dereference:
|
2018-02-04 16:51:44 +00:00
|
|
|
array_method_dereference '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
fetch := &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($2, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: nil,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = append($1, fetch)
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
| method '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
fetch := &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($2, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: nil,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = []ast.Vertex{$1, fetch}
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
method:
|
2018-02-04 16:51:44 +00:00
|
|
|
function_call_parameter_list
|
|
|
|
{
|
2020-12-03 19:42:16 +00:00
|
|
|
$$ = &ast.ExprMethodCall{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-12-03 19:42:16 +00:00
|
|
|
OpenParenthesisTkn: $1.(*ast.ArgumentList).OpenParenthesisTkn,
|
|
|
|
Arguments: $1.(*ast.ArgumentList).Arguments,
|
2020-12-04 09:36:12 +00:00
|
|
|
SeparatorTkns: $1.(*ast.ArgumentList).SeparatorTkns,
|
2020-12-03 19:42:16 +00:00
|
|
|
CloseParenthesisTkn: $1.(*ast.ArgumentList).CloseParenthesisTkn,
|
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
method_or_not:
|
2018-02-04 16:51:44 +00:00
|
|
|
method
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{$1}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
| array_method_dereference
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
| /* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
variable_without_objects:
|
2018-02-01 18:40:04 +00:00
|
|
|
reference_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-01 18:40:04 +00:00
|
|
|
| simple_indirect_reference reference_variable
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
for i := len($1)-1; i>=0; i-- {
|
|
|
|
$1[i].(*ast.ExprVariable).VarName = $2
|
2020-12-08 00:08:59 +00:00
|
|
|
$1[i].(*ast.ExprVariable).Position = yylex.(*Parser).builder.NewNodesPosition($1[i], $2)
|
2020-12-03 22:13:28 +00:00
|
|
|
$2 = $1[i]
|
2018-02-01 18:40:04 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = $1[0]
|
2018-02-01 18:40:04 +00:00
|
|
|
}
|
2017-11-24 01:36:58 +00:00
|
|
|
;
|
|
|
|
|
2017-11-30 16:15:49 +00:00
|
|
|
static_member:
|
2018-02-01 18:40:04 +00:00
|
|
|
class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprStaticPropertyFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-03 20:41:08 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
Property: $3,
|
|
|
|
}
|
2018-02-01 18:40:04 +00:00
|
|
|
}
|
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects
|
|
|
|
{
|
2020-12-03 20:41:08 +00:00
|
|
|
$$ = &ast.ExprStaticPropertyFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-12-03 20:41:08 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
Property: $3,
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
variable_class_name:
|
2018-01-29 14:37:09 +00:00
|
|
|
reference_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
array_function_dereference:
|
2018-02-01 18:40:04 +00:00
|
|
|
array_function_dereference '[' dim_offset ']'
|
2018-02-04 18:55:45 +00:00
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
2018-02-01 18:40:04 +00:00
|
|
|
| function_call '[' dim_offset ']'
|
2018-02-04 18:55:45 +00:00
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
base_variable_with_function_calls:
|
2018-06-10 23:41:12 +00:00
|
|
|
base_variable
|
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
|
|
|
| array_function_dereference
|
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
|
|
|
| function_call
|
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
base_variable:
|
2018-02-01 18:40:04 +00:00
|
|
|
reference_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-29 19:12:12 +00:00
|
|
|
| simple_indirect_reference reference_variable
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
for i := len($1)-1; i>=0; i-- {
|
|
|
|
$1[i].(*ast.ExprVariable).VarName = $2
|
2020-12-08 00:08:59 +00:00
|
|
|
$1[i].(*ast.ExprVariable).Position = yylex.(*Parser).builder.NewNodesPosition($1[i], $2)
|
2020-12-03 22:13:28 +00:00
|
|
|
$2 = $1[i]
|
2018-01-29 19:12:12 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = $1[0]
|
2018-01-29 19:12:12 +00:00
|
|
|
}
|
2018-02-01 18:40:04 +00:00
|
|
|
| static_member
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
reference_variable:
|
2018-01-29 19:12:12 +00:00
|
|
|
reference_variable '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-01-29 19:12:12 +00:00
|
|
|
}
|
|
|
|
| reference_variable '{' expr '}'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-01-29 19:12:12 +00:00
|
|
|
}
|
2018-02-01 18:40:04 +00:00
|
|
|
| compound_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
compound_variable:
|
2018-01-29 14:37:09 +00:00
|
|
|
T_VARIABLE
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-01-29 14:37:09 +00:00
|
|
|
}
|
|
|
|
| '$' '{' expr '}'
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-03 22:13:28 +00:00
|
|
|
DollarTkn: $1,
|
|
|
|
VarName: &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($2, $4),
|
2020-12-03 22:13:28 +00:00
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Child: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
},
|
|
|
|
}
|
2018-01-29 14:37:09 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
dim_offset:
|
2018-02-04 18:55:45 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = nil
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
| expr
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
object_property:
|
2020-05-13 17:18:53 +00:00
|
|
|
object_dim_list
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
| variable_without_objects
|
|
|
|
{
|
2020-12-03 19:42:16 +00:00
|
|
|
$$ = []ast.Vertex{
|
|
|
|
&ast.ExprPropertyFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-12-03 19:42:16 +00:00
|
|
|
Property: $1,
|
|
|
|
},
|
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
object_dim_list:
|
2018-02-01 14:07:18 +00:00
|
|
|
object_dim_list '[' dim_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
fetch := &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($2, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: nil,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = append($1, fetch)
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
|
|
|
| object_dim_list '{' expr '}'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
fetch := &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($2, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: nil,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
}
|
2018-02-04 16:51:44 +00:00
|
|
|
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = append($1, fetch)
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
|
|
|
| variable_name
|
|
|
|
{
|
2020-12-03 19:42:16 +00:00
|
|
|
$$ = []ast.Vertex{
|
|
|
|
&ast.ExprPropertyFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-12-03 19:42:16 +00:00
|
|
|
Property: $1,
|
|
|
|
},
|
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
variable_name:
|
2018-02-01 10:35:43 +00:00
|
|
|
T_STRING
|
|
|
|
{
|
2020-11-20 20:02:36 +00:00
|
|
|
$$ = &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 20:02:36 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-02-01 10:35:43 +00:00
|
|
|
}
|
|
|
|
| '{' expr '}'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-04 10:58:56 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-04 10:58:56 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: $2,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
simple_indirect_reference:
|
2018-01-29 19:12:12 +00:00
|
|
|
'$'
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = []ast.Vertex{
|
|
|
|
&ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
DollarTkn: $1,
|
|
|
|
},
|
|
|
|
}
|
2018-01-29 19:12:12 +00:00
|
|
|
}
|
|
|
|
| simple_indirect_reference '$'
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = append($1, &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-12-03 22:13:28 +00:00
|
|
|
DollarTkn: $2,
|
|
|
|
})
|
2018-01-29 19:12:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
assignment_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
assignment_list ',' assignment_list_element
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| assignment_list_element
|
2018-02-14 19:02:57 +00:00
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
2018-02-14 19:02:57 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
assignment_list_element:
|
2018-02-01 10:35:43 +00:00
|
|
|
variable
|
2018-02-08 22:02:12 +00:00
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-11-30 22:42:45 +00:00
|
|
|
Val: $1,
|
|
|
|
}
|
2018-02-08 22:02:12 +00:00
|
|
|
}
|
2018-02-01 10:35:43 +00:00
|
|
|
| T_LIST '(' assignment_list ')'
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
pairList := $3.(*ast.ParserSeparatedList)
|
|
|
|
fistPair := pairList.Items[0].(*ast.ExprArrayItem)
|
|
|
|
|
|
|
|
if fistPair.Key == nil && fistPair.Val == nil && len(pairList.Items) == 1 {
|
|
|
|
pairList.Items = nil
|
|
|
|
}
|
|
|
|
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Val: &ast.ExprList{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
ListTkn: $1,
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Items: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseBracketTkn: $4,
|
|
|
|
},
|
2020-11-30 21:42:56 +00:00
|
|
|
}
|
2018-02-01 10:35:43 +00:00
|
|
|
}
|
|
|
|
| /* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayItem{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
array_pair_list:
|
2018-02-01 10:04:17 +00:00
|
|
|
/* empty */
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
| non_empty_array_pair_list possible_comma
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2018-06-26 09:22:51 +00:00
|
|
|
if $2 != nil {
|
2020-11-30 21:42:56 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, &ast.ExprArrayItem{})
|
2018-06-26 09:22:51 +00:00
|
|
|
}
|
|
|
|
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
non_empty_array_pair_list:
|
2018-02-01 10:04:17 +00:00
|
|
|
non_empty_array_pair_list ',' expr T_DOUBLE_ARROW expr
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
arrayItem := &ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($3, $5),
|
2020-11-30 22:42:45 +00:00
|
|
|
Key: $3,
|
|
|
|
DoubleArrowTkn: $4,
|
|
|
|
Val: $5,
|
|
|
|
}
|
2020-11-30 21:42:56 +00:00
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, arrayItem)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| non_empty_array_pair_list ',' expr
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
arrayItem := &ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($3),
|
2020-11-30 22:42:45 +00:00
|
|
|
Val: $3,
|
|
|
|
}
|
2020-11-30 21:42:56 +00:00
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, arrayItem)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| expr T_DOUBLE_ARROW expr
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
2020-11-30 22:42:45 +00:00
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $3),
|
2020-11-30 22:42:45 +00:00
|
|
|
Key: $1,
|
|
|
|
DoubleArrowTkn: $2,
|
|
|
|
Val: $3,
|
|
|
|
},
|
|
|
|
},
|
2020-11-30 21:42:56 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| expr
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
2020-11-30 22:42:45 +00:00
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($1),
|
2020-11-30 22:42:45 +00:00
|
|
|
Val: $1,
|
|
|
|
},
|
|
|
|
},
|
2020-11-30 21:42:56 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| non_empty_array_pair_list ',' expr T_DOUBLE_ARROW '&' w_variable
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
arrayItem := &ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($3, $6),
|
2020-11-30 22:42:45 +00:00
|
|
|
Key: $3,
|
|
|
|
DoubleArrowTkn: $4,
|
|
|
|
Val: &ast.ExprReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($5, $6),
|
2020-12-03 20:20:50 +00:00
|
|
|
AmpersandTkn: $5,
|
|
|
|
Var: $6,
|
2020-11-30 22:42:45 +00:00
|
|
|
},
|
|
|
|
}
|
2020-11-30 21:42:56 +00:00
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, arrayItem)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| non_empty_array_pair_list ',' '&' w_variable
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
arrayItem := &ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($3, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Val: &ast.ExprReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($3, $4),
|
2020-12-03 20:20:50 +00:00
|
|
|
AmpersandTkn: $3,
|
|
|
|
Var: $4,
|
2020-11-30 22:42:45 +00:00
|
|
|
},
|
|
|
|
}
|
2020-11-30 21:42:56 +00:00
|
|
|
|
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, arrayItem)
|
|
|
|
|
|
|
|
$$ = $1
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| expr T_DOUBLE_ARROW '&' w_variable
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
2020-11-30 22:42:45 +00:00
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodesPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Key: $1,
|
|
|
|
DoubleArrowTkn: $2,
|
|
|
|
Val: &ast.ExprReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($3, $4),
|
2020-12-03 20:20:50 +00:00
|
|
|
AmpersandTkn: $3,
|
|
|
|
Var: $4,
|
2020-11-30 22:42:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-11-30 21:42:56 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| '&' w_variable
|
|
|
|
{
|
2020-11-30 21:42:56 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
2020-11-30 22:42:45 +00:00
|
|
|
Items: []ast.Vertex{
|
|
|
|
&ast.ExprArrayItem{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-11-30 22:42:45 +00:00
|
|
|
Val: &ast.ExprReference{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 20:20:50 +00:00
|
|
|
AmpersandTkn: $1,
|
|
|
|
Var: $2,
|
2020-11-30 22:42:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-11-30 21:42:56 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
encaps_list:
|
2018-01-31 10:55:50 +00:00
|
|
|
encaps_list encaps_var
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = append($1, $2)
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
| encaps_list T_ENCAPSED_AND_WHITESPACE
|
|
|
|
{
|
2020-11-20 21:36:45 +00:00
|
|
|
$$ = append(
|
|
|
|
$1,
|
|
|
|
&ast.ScalarEncapsedStringPart{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-11-20 21:36:45 +00:00
|
|
|
EncapsedStrTkn: $2,
|
|
|
|
Value: $2.Value,
|
|
|
|
},
|
|
|
|
)
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| encaps_var
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = []ast.Vertex{$1}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
| T_ENCAPSED_AND_WHITESPACE encaps_var
|
|
|
|
{
|
2020-11-20 21:36:45 +00:00
|
|
|
$$ = []ast.Vertex{
|
|
|
|
&ast.ScalarEncapsedStringPart{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:36:45 +00:00
|
|
|
EncapsedStrTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
$2,
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-31 10:55:50 +00:00
|
|
|
encaps_var:
|
|
|
|
T_VARIABLE
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE '[' encaps_var_offset ']'
|
|
|
|
{
|
2020-11-30 22:42:45 +00:00
|
|
|
$$ = &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-11-30 22:42:45 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-30 22:42:45 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-30 22:42:45 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
OpenBracketTkn: $2,
|
|
|
|
Dim: $3,
|
|
|
|
CloseBracketTkn: $4,
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE T_OBJECT_OPERATOR T_STRING
|
|
|
|
{
|
2020-12-03 19:42:16 +00:00
|
|
|
$$ = &ast.ExprPropertyFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-03 19:42:16 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 19:42:16 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 19:42:16 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ObjectOperatorTkn: $2,
|
|
|
|
Property: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-03 19:42:16 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_DOLLAR_OPEN_CURLY_BRACES expr '}'
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-03 22:13:28 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodePosition($2),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: $2,
|
|
|
|
},
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
|
|
|
| T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '}'
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-03 22:13:28 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
2020-12-03 22:13:28 +00:00
|
|
|
CloseBracketTkn: $3,
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '[' expr ']' '}'
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $6),
|
2020-12-03 22:13:28 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: &ast.ExprArrayDimFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($2, $5),
|
2020-12-03 22:13:28 +00:00
|
|
|
Var: &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($2),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $2,
|
|
|
|
Value: $2.Value,
|
|
|
|
},
|
2020-11-30 22:42:45 +00:00
|
|
|
},
|
2020-12-03 22:13:28 +00:00
|
|
|
OpenBracketTkn: $3,
|
|
|
|
Dim: $4,
|
|
|
|
CloseBracketTkn: $5,
|
2020-11-30 22:42:45 +00:00
|
|
|
},
|
2020-12-03 22:13:28 +00:00
|
|
|
CloseBracketTkn: $6,
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_CURLY_OPEN variable '}'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ParserBrackets{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $3),
|
2020-12-03 22:13:28 +00:00
|
|
|
OpenBracketTkn: $1,
|
|
|
|
Child: $2,
|
|
|
|
CloseBracketTkn: $3,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
;
|
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
encaps_var_offset:
|
2018-01-31 10:55:50 +00:00
|
|
|
T_STRING
|
|
|
|
{
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarString{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
StringTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| T_NUM_STRING
|
|
|
|
{
|
|
|
|
// TODO: add option to handle 64 bit integer
|
2020-05-13 17:18:53 +00:00
|
|
|
if _, err := strconv.Atoi(string($1.Value)); err == nil {
|
2020-11-20 21:08:30 +00:00
|
|
|
$$ = &ast.ScalarLnumber{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:08:30 +00:00
|
|
|
NumberTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
} else {
|
2020-11-20 21:53:58 +00:00
|
|
|
$$ = &ast.ScalarString{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-11-20 21:53:58 +00:00
|
|
|
StringTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
| T_VARIABLE
|
|
|
|
{
|
2020-12-03 22:13:28 +00:00
|
|
|
$$ = &ast.ExprVariable{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
VarName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($1),
|
2020-12-03 22:13:28 +00:00
|
|
|
IdentifierTkn: $1,
|
|
|
|
Value: $1.Value,
|
|
|
|
},
|
2020-11-20 20:02:36 +00:00
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
internal_functions_in_yacc:
|
2018-06-06 23:25:27 +00:00
|
|
|
T_ISSET '(' isset_variables ')'
|
|
|
|
{
|
2020-12-01 10:16:46 +00:00
|
|
|
$$ = &ast.ExprIsset{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-01 10:16:46 +00:00
|
|
|
IssetTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
Vars: $3.(*ast.ParserSeparatedList).Items,
|
|
|
|
SeparatorTkns: $3.(*ast.ParserSeparatedList).SeparatorTkns,
|
|
|
|
CloseParenthesisTkn: $4,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
| T_EMPTY '(' variable ')'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprEmpty{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-01 09:12:56 +00:00
|
|
|
EmptyTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
CloseParenthesisTkn: $4,
|
2020-09-03 19:18:06 +00:00
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
|
|
|
| T_EMPTY '(' expr ')'
|
|
|
|
{
|
2020-12-01 09:12:56 +00:00
|
|
|
$$ = &ast.ExprEmpty{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-01 09:12:56 +00:00
|
|
|
EmptyTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
CloseParenthesisTkn: $4,
|
2020-09-03 19:18:06 +00:00
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
| T_INCLUDE expr
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-01 09:58:09 +00:00
|
|
|
$$ = &ast.ExprInclude{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-01 09:58:09 +00:00
|
|
|
IncludeTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
| T_INCLUDE_ONCE expr
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-01 09:58:09 +00:00
|
|
|
$$ = &ast.ExprIncludeOnce{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-01 09:58:09 +00:00
|
|
|
IncludeTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
| T_EVAL '(' expr ')'
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-01 09:58:09 +00:00
|
|
|
$$ = &ast.ExprEval{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokensPosition($1, $4),
|
2020-12-01 09:58:09 +00:00
|
|
|
EvalTkn: $1,
|
|
|
|
OpenParenthesisTkn: $2,
|
|
|
|
Expr: $3,
|
|
|
|
CloseParenthesisTkn: $4,
|
2020-09-03 19:18:06 +00:00
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
| T_REQUIRE expr
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-03 20:20:50 +00:00
|
|
|
$$ = &ast.ExprRequire{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 20:20:50 +00:00
|
|
|
RequireTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
| T_REQUIRE_ONCE expr
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-03 20:20:50 +00:00
|
|
|
$$ = &ast.ExprRequireOnce{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenNodePosition($1, $2),
|
2020-12-03 20:20:50 +00:00
|
|
|
RequireOnceTkn: $1,
|
|
|
|
Expr: $2,
|
|
|
|
}
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
isset_variables:
|
2018-02-01 10:04:17 +00:00
|
|
|
isset_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-12-01 10:16:46 +00:00
|
|
|
$$ = &ast.ParserSeparatedList{
|
|
|
|
Items: []ast.Vertex{$1},
|
|
|
|
}
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-01 10:04:17 +00:00
|
|
|
| isset_variables ',' isset_variable
|
2018-06-06 23:25:27 +00:00
|
|
|
{
|
2020-12-01 10:16:46 +00:00
|
|
|
$1.(*ast.ParserSeparatedList).SeparatorTkns = append($1.(*ast.ParserSeparatedList).SeparatorTkns, $2)
|
|
|
|
$1.(*ast.ParserSeparatedList).Items = append($1.(*ast.ParserSeparatedList).Items, $3)
|
2018-06-06 23:25:27 +00:00
|
|
|
|
2020-12-01 10:16:46 +00:00
|
|
|
$$ = $1
|
2018-06-06 23:25:27 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
isset_variable:
|
2018-02-04 18:55:45 +00:00
|
|
|
variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2018-02-04 18:55:45 +00:00
|
|
|
| expr_without_variable
|
2018-06-10 23:41:12 +00:00
|
|
|
{
|
2020-05-13 17:18:53 +00:00
|
|
|
$$ = $1
|
2018-06-10 23:41:12 +00:00
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
class_constant:
|
2018-01-31 10:55:50 +00:00
|
|
|
class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprClassConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $3),
|
2020-12-01 07:51:47 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
ConstantName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-01 07:51:47 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprClassConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $3),
|
2020-12-01 07:51:47 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
ConstantName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-01 07:51:47 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static_class_name_scalar:
|
2018-01-31 10:55:50 +00:00
|
|
|
class_name T_PAAMAYIM_NEKUDOTAYIM T_CLASS
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprClassConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $3),
|
2020-12-01 07:51:47 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
ConstantName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-01 07:51:47 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
class_name_scalar:
|
2018-01-31 10:55:50 +00:00
|
|
|
class_name T_PAAMAYIM_NEKUDOTAYIM T_CLASS
|
|
|
|
{
|
2020-12-01 07:51:47 +00:00
|
|
|
$$ = &ast.ExprClassConstFetch{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewNodeTokenPosition($1, $3),
|
2020-12-01 07:51:47 +00:00
|
|
|
Class: $1,
|
|
|
|
DoubleColonTkn: $2,
|
|
|
|
ConstantName: &ast.Identifier{
|
2020-12-08 00:08:59 +00:00
|
|
|
Position: yylex.(*Parser).builder.NewTokenPosition($3),
|
2020-12-01 07:51:47 +00:00
|
|
|
IdentifierTkn: $3,
|
|
|
|
Value: $3.Value,
|
2020-11-20 20:02:36 +00:00
|
|
|
},
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
2017-11-23 15:33:47 +00:00
|
|
|
|
2018-04-09 21:52:38 +00:00
|
|
|
%%
|