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-02-12 13:08:08 +00:00
|
|
|
"fmt"
|
2018-02-04 17:37:27 +00:00
|
|
|
"strings"
|
2018-01-31 10:55:50 +00:00
|
|
|
"strconv"
|
2018-01-24 16:42:23 +00:00
|
|
|
|
2017-12-03 18:49:18 +00:00
|
|
|
"github.com/z7zmey/php-parser/token"
|
2018-01-29 14:11:45 +00:00
|
|
|
"github.com/z7zmey/php-parser/node"
|
2018-01-29 14:22:04 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/scalar"
|
2018-01-29 14:11:45 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/name"
|
|
|
|
"github.com/z7zmey/php-parser/node/stmt"
|
2018-01-29 14:37:09 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr"
|
2018-02-01 10:35:43 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr/assign_op"
|
2018-02-04 17:37:27 +00:00
|
|
|
"github.com/z7zmey/php-parser/node/expr/binary_op"
|
|
|
|
"github.com/z7zmey/php-parser/node/expr/cast"
|
2017-11-23 15:33:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%union{
|
2018-01-29 14:11:45 +00:00
|
|
|
node node.Node
|
2017-12-03 18:49:18 +00:00
|
|
|
token token.Token
|
2018-02-03 17:33:22 +00:00
|
|
|
boolWithToken boolWithToken
|
2018-01-29 14:11:45 +00:00
|
|
|
list []node.Node
|
2018-02-01 10:35:43 +00:00
|
|
|
foreachVariable foreachVariable
|
2018-02-01 14:07:18 +00:00
|
|
|
nodesWithEndToken *nodesWithEndToken
|
2018-01-29 19:12:12 +00:00
|
|
|
simpleIndirectReference simpleIndirectReference
|
2018-01-29 14:11:45 +00:00
|
|
|
// str string
|
2017-11-23 15:33:47 +00:00
|
|
|
}
|
|
|
|
|
2017-11-24 01:36:58 +00:00
|
|
|
%type <token> $unk
|
|
|
|
%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
|
|
|
|
%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
|
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> '$'
|
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-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
|
2018-02-03 13:24:00 +00:00
|
|
|
%type <node> else_single new_else_single while_statement for_statement unset_variable foreach_statement declare_statement
|
2018-02-03 17:33:22 +00:00
|
|
|
%type <node> finally_statement additional_catch unticked_function_declaration_statement unticked_class_declaration_statement
|
|
|
|
%type <node> optional_class_type parameter class_entry_type extends_from 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
|
2018-02-04 18:55:45 +00:00
|
|
|
%type <node> static_scalar_value static_operation
|
2018-01-29 14:11:45 +00:00
|
|
|
|
|
|
|
%type <list> top_statement_list namespace_name use_declarations use_function_declarations use_const_declarations
|
2018-02-01 10:04:17 +00:00
|
|
|
%type <list> inner_statement_list global_var_list static_var_list encaps_list isset_variables non_empty_array_pair_list
|
2018-02-03 12:29:23 +00:00
|
|
|
%type <list> array_pair_list assignment_list lexical_var_list lexical_vars elseif_list new_elseif_list non_empty_for_expr
|
2018-02-03 13:24:00 +00:00
|
|
|
%type <list> for_expr case_list echo_expr_list unset_variables declare_list catch_statement additional_catches
|
2018-02-03 17:33:22 +00:00
|
|
|
%type <list> non_empty_additional_catches parameter_list non_empty_parameter_list class_statement_list implements_list
|
|
|
|
%type <list> class_statement_list variable_modifiers method_modifiers class_variable_declaration interface_extends_list
|
2018-02-03 22:09:37 +00:00
|
|
|
%type <list> interface_list non_empty_function_call_parameter_list trait_list trait_adaptation_list non_empty_trait_adaptation_list
|
2018-02-04 18:55:45 +00:00
|
|
|
%type <list> trait_reference_list non_empty_member_modifiers backticks_expr static_array_pair_list non_empty_static_array_pair_list
|
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
|
|
|
|
|
|
|
%type <simpleIndirectReference> simple_indirect_reference
|
2018-02-03 12:41:34 +00:00
|
|
|
%type <foreachVariable> foreach_variable foreach_optional_arg
|
2018-02-03 22:09:37 +00:00
|
|
|
%type <nodesWithEndToken> ctor_arguments function_call_parameter_list switch_case_list method_body trait_adaptations
|
2018-02-03 17:33:22 +00:00
|
|
|
%type <boolWithToken> is_reference is_variadic
|
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
|
|
|
|
{
|
|
|
|
rootnode = stmt.NewStmtList($1)
|
|
|
|
}
|
2017-11-23 15:33:47 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
top_statement_list:
|
2018-02-12 13:08:08 +00:00
|
|
|
top_statement_list top_statement { fmt.Println("1"); $$ = append($1, $2) }
|
|
|
|
| /* empty */ { fmt.Println("2"); $$ = []node.Node{} }
|
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
|
|
|
|
{
|
|
|
|
namePart := name.NewNamePart($1.Value)
|
|
|
|
positions.AddPosition(namePart, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("3"); $$ = []node.Node{namePart}
|
2018-01-29 14:11:45 +00:00
|
|
|
comments.AddComments(namePart, $1.Comments())
|
|
|
|
}
|
|
|
|
| namespace_name T_NS_SEPARATOR T_STRING
|
|
|
|
{
|
|
|
|
namePart := name.NewNamePart($3.Value)
|
|
|
|
positions.AddPosition(namePart, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("4"); $$ = append($1, namePart)
|
2018-01-29 14:11:45 +00:00
|
|
|
comments.AddComments(namePart, $3.Comments())
|
|
|
|
}
|
2017-11-23 15:33:47 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
top_statement:
|
2018-02-03 10:09:02 +00:00
|
|
|
statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("5"); $$ = $1 }
|
2018-02-03 10:09:02 +00:00
|
|
|
| function_declaration_statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("6"); $$ = $1 }
|
2018-02-03 10:09:02 +00:00
|
|
|
| class_declaration_statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("7"); $$ = $1 }
|
2018-02-03 10:09:02 +00:00
|
|
|
| T_HALT_COMPILER '(' ')' ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("8"); $$ = stmt.NewHaltCompiler()
|
2018-02-03 10:09:02 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-29 14:11:45 +00:00
|
|
|
| T_NAMESPACE namespace_name ';'
|
|
|
|
{
|
|
|
|
name := name.NewName($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($2))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("9"); $$ = stmt.NewNamespace(name, nil)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_NAMESPACE namespace_name '{' top_statement_list '}'
|
|
|
|
{
|
|
|
|
name := name.NewName($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($2))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("10"); $$ = stmt.NewNamespace(name, $4)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $5))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_NAMESPACE '{' top_statement_list '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("11"); $$ = stmt.NewNamespace(nil, $3)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_USE use_declarations ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("12"); $$ = stmt.NewUseList(nil, $2)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_USE T_FUNCTION use_function_declarations ';'
|
|
|
|
{
|
|
|
|
useType := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($2))
|
|
|
|
comments.AddComments($$, $2.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("13"); $$ = stmt.NewUseList(useType, $3)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_USE T_CONST use_const_declarations ';'
|
|
|
|
{
|
|
|
|
useType := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($2))
|
|
|
|
comments.AddComments($$, $2.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("14"); $$ = stmt.NewUseList(useType, $3)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-02-03 10:09:02 +00:00
|
|
|
| constant_declaration ';'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("15"); $$ = $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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("16"); $$ = append($1, $3) }
|
2018-02-03 10:09:02 +00:00
|
|
|
| use_declaration
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("17"); $$ = []node.Node{$1} }
|
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
|
|
|
|
{
|
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("18"); $$ = stmt.NewUse(nil, name, nil)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListPosition($1))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
|
|
|
| namespace_name T_AS T_STRING
|
|
|
|
{
|
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
|
|
|
alias := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(alias, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("19"); $$ = stmt.NewUse(nil, name, alias)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
comments.AddComments(alias, $3.Comments())
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
|
|
|
name := name.NewName($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($2))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("20"); $$ = stmt.NewUse(nil, name, nil)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListPosition($2))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($2))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($2))
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name T_AS T_STRING
|
|
|
|
{
|
|
|
|
name := name.NewName($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($2))
|
|
|
|
alias := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(alias, positionBuilder.NewTokenPosition($4))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("21"); $$ = stmt.NewUse(nil, name, alias)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($2, $4))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($2))
|
|
|
|
comments.AddComments(alias, $4.Comments())
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($2))
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("22"); $$ = append($1, $3) }
|
2018-01-29 14:11:45 +00:00
|
|
|
| use_function_declaration
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("23"); $$ = []node.Node{$1} }
|
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
|
|
|
|
{
|
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("24"); $$ = stmt.NewUse(nil, name, nil)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListPosition($1))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
|
|
|
| namespace_name T_AS T_STRING
|
|
|
|
{
|
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
|
|
|
alias := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(alias, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("25"); $$ = stmt.NewUse(nil, name, alias)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
comments.AddComments(alias, $3.Comments())
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
|
|
|
name := name.NewName($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($2))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("26"); $$ = stmt.NewUse(nil, name, nil)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListPosition($2))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($2))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($2))
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name T_AS T_STRING
|
|
|
|
{
|
|
|
|
name := name.NewName($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($2))
|
|
|
|
alias := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(alias, positionBuilder.NewTokenPosition($4))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("27"); $$ = stmt.NewUse(nil, name, alias)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($2, $4))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($2))
|
|
|
|
comments.AddComments(alias, $4.Comments())
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($2))
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("28"); $$ = append($1, $3) }
|
2018-01-29 14:11:45 +00:00
|
|
|
| use_const_declaration
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("29"); $$ = []node.Node{$1} }
|
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
|
|
|
|
{
|
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("30"); $$ = stmt.NewUse(nil, name, nil)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListPosition($1))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
|
|
|
| namespace_name T_AS T_STRING
|
|
|
|
{
|
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
|
|
|
alias := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(alias, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("31"); $$ = stmt.NewUse(nil, name, alias)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
comments.AddComments(alias, $3.Comments())
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
|
|
|
name := name.NewName($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($2))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("32"); $$ = stmt.NewUse(nil, name, nil)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListPosition($2))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($2))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($2))
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name T_AS T_STRING
|
|
|
|
{
|
|
|
|
name := name.NewName($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($2))
|
|
|
|
alias := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(alias, positionBuilder.NewTokenPosition($4))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("33"); $$ = stmt.NewUse(nil, name, alias)
|
2018-01-29 14:11:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($2, $4))
|
|
|
|
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($2))
|
|
|
|
comments.AddComments(alias, $4.Comments())
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($2))
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(name, $3.Comments())
|
|
|
|
|
|
|
|
constant := stmt.NewConstant(name, $5, "")
|
|
|
|
positions.AddPosition(constant, positionBuilder.NewTokenNodePosition($3, $5))
|
|
|
|
comments.AddComments(constant, $3.Comments())
|
|
|
|
|
|
|
|
constList := $1.(*stmt.ConstList)
|
|
|
|
constList.Consts = append(constList.Consts, constant)
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("34"); $$ = $1
|
2018-02-03 10:09:02 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeNodeListPosition($1, constList.Consts))
|
|
|
|
}
|
|
|
|
| T_CONST T_STRING '=' static_scalar
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($2))
|
|
|
|
comments.AddComments(name, $2.Comments())
|
|
|
|
|
|
|
|
constant := stmt.NewConstant(name, $4, "")
|
|
|
|
positions.AddPosition(constant, positionBuilder.NewTokenNodePosition($2, $4))
|
|
|
|
comments.AddComments(constant, $2.Comments())
|
|
|
|
|
|
|
|
constList := []node.Node{constant}
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("35"); $$ = stmt.NewConstList(constList)
|
2018-02-03 10:09:02 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, constList))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("36"); $$ = append($1, $2) }
|
2018-02-03 10:09:02 +00:00
|
|
|
| /* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("37"); $$ = []node.Node{} }
|
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-02-03 10:09:02 +00:00
|
|
|
statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("38"); $$ = $1 }
|
2018-02-03 10:09:02 +00:00
|
|
|
| function_declaration_statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("39"); $$ = $1 }
|
2018-02-03 10:09:02 +00:00
|
|
|
| class_declaration_statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("40"); $$ = $1 }
|
2018-02-03 10:09:02 +00:00
|
|
|
| T_HALT_COMPILER '(' ')' ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("41"); $$ = stmt.NewHaltCompiler()
|
2018-02-03 10:09:02 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("42"); $$ = $1 }
|
2018-02-03 10:09:02 +00:00
|
|
|
| T_STRING ':'
|
|
|
|
{
|
|
|
|
label := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(label, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("43"); $$ = stmt.NewLabel(label)
|
2018-02-03 10:09:02 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
|
|
|
|
|
|
|
|
comments.AddComments(label, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
unticked_statement:
|
2018-02-03 12:29:23 +00:00
|
|
|
'{' inner_statement_list '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("44"); $$ = stmt.NewStmtList($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_IF parenthesis_expr statement elseif_list else_single
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("45"); $$ = stmt.NewIf($2, $3, $4, $5)
|
2018-02-03 12:29:23 +00:00
|
|
|
|
|
|
|
if $5 != nil {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $5))
|
|
|
|
} else if len($4) > 0 {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $4))
|
|
|
|
} else {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $3))
|
|
|
|
}
|
|
|
|
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_IF parenthesis_expr ':' inner_statement_list new_elseif_list new_else_single T_ENDIF ';'
|
|
|
|
{
|
|
|
|
stmts := stmt.NewStmtList($4)
|
|
|
|
positions.AddPosition(stmts, positionBuilder.NewNodeListPosition($4))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("46"); $$ = stmt.NewAltIf($2, stmts, $5, $6)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $8))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_WHILE parenthesis_expr while_statement
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("47"); $$ = stmt.NewWhile($2, $3)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_DO statement T_WHILE parenthesis_expr ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("48"); $$ = stmt.NewDo($2, $4)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $5))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_FOR '(' for_expr ';' for_expr ';' for_expr ')' for_statement
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("49"); $$ = stmt.NewFor($3, $5, $7, $9)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $9))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_SWITCH parenthesis_expr switch_case_list
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("50"); $$ = stmt.NewSwitch($2, $3.nodes)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3.endToken))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_BREAK ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("51"); $$ = stmt.NewBreak(nil)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_BREAK expr ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("52"); $$ = stmt.NewBreak($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_CONTINUE ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("53"); $$ = stmt.NewContinue(nil)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_CONTINUE expr ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("54"); $$ = stmt.NewContinue($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_RETURN ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("55"); $$ = stmt.NewReturn(nil)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_RETURN expr_without_variable ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("56"); $$ = stmt.NewReturn($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_RETURN variable ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("57"); $$ = stmt.NewReturn($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| yield_expr ';'
|
2018-02-12 21:10:53 +00:00
|
|
|
{
|
|
|
|
fmt.Println("58"); $$ = stmt.NewExpression($1)
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $2))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| T_GLOBAL global_var_list ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("59"); $$ = stmt.NewGlobal($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_STATIC static_var_list ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("60"); $$ = stmt.NewStatic($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_ECHO echo_expr_list ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("61"); $$ = stmt.NewEcho($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_INLINE_HTML
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("62"); $$ = stmt.NewInlineHtml($1.Value)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| expr ';'
|
2018-02-08 10:48:38 +00:00
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("63"); $$ = stmt.NewExpression($1)
|
2018-02-08 10:48:38 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $2))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-02-03 12:29:23 +00:00
|
|
|
| T_UNSET '(' unset_variables ')' ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("64"); $$ = stmt.NewUnset($3)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $5))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-02-03 12:41:34 +00:00
|
|
|
| T_FOREACH '(' variable T_AS foreach_variable foreach_optional_arg ')' foreach_statement
|
|
|
|
{
|
|
|
|
if $6.node == nil {
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("65"); $$ = stmt.NewForeach($3, nil, $5.node, $8, $5.byRef)
|
2018-02-03 12:41:34 +00:00
|
|
|
} else {
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("66"); $$ = stmt.NewForeach($3, $5.node, $6.node, $8, $6.byRef)
|
2018-02-03 12:41:34 +00:00
|
|
|
}
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $8))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_FOREACH '(' expr_without_variable T_AS foreach_variable foreach_optional_arg ')' foreach_statement
|
|
|
|
{
|
|
|
|
if $6.node == nil {
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("67"); $$ = stmt.NewForeach($3, nil, $5.node, $8, $5.byRef)
|
2018-02-03 12:41:34 +00:00
|
|
|
} else {
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("68"); $$ = stmt.NewForeach($3, $5.node, $6.node, $8, $6.byRef)
|
2018-02-03 12:41:34 +00:00
|
|
|
}
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $8))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-02-03 13:24:00 +00:00
|
|
|
| T_DECLARE '(' declare_list ')' declare_statement
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("69"); $$ = stmt.NewDeclare($3, $5)
|
2018-02-03 13:24:00 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $5))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("70"); $$ = stmt.NewNop()
|
2018-02-03 13:24:00 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_TRY '{' inner_statement_list '}' catch_statement finally_statement
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("71"); $$ = stmt.NewTry($3, $5, $6)
|
2018-02-03 13:24:00 +00:00
|
|
|
|
|
|
|
if $6 == nil {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $5))
|
|
|
|
} else {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $6))
|
|
|
|
}
|
|
|
|
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_THROW expr ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("72"); $$ = stmt.NewThrow($2)
|
2018-02-03 13:24:00 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_GOTO T_STRING ';'
|
|
|
|
{
|
|
|
|
label := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition(label, positionBuilder.NewTokenPosition($2))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("73"); $$ = stmt.NewGoto(label)
|
2018-02-03 13:24:00 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(label, $2.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
catch_statement:
|
2018-02-03 13:24:00 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("74"); $$ = []node.Node{} }
|
2018-02-03 13:24:00 +00:00
|
|
|
| T_CATCH '(' fully_qualified_class_name T_VARIABLE ')' '{' inner_statement_list '}' additional_catches
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(identifier, $4.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(variable, $4.Comments())
|
|
|
|
|
|
|
|
catch := stmt.NewCatch([]node.Node{$3}, variable, $7)
|
|
|
|
positions.AddPosition(catch, positionBuilder.NewTokensPosition($1, $8))
|
|
|
|
comments.AddComments(catch, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("75"); $$ = append([]node.Node{catch}, $9...)
|
2018-02-03 13:24:00 +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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("76"); $$ = nil }
|
2018-02-03 13:24:00 +00:00
|
|
|
| T_FINALLY '{' inner_statement_list '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("77"); $$ = stmt.NewFinally($3)
|
2018-02-03 13:24:00 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("78"); $$ = $1 }
|
2018-02-03 13:24:00 +00:00
|
|
|
| /* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("79"); $$ = []node.Node{} }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("80"); $$ = []node.Node{$1} }
|
2018-02-03 13:24:00 +00:00
|
|
|
| non_empty_additional_catches additional_catch
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("81"); $$ = append($1, $2) }
|
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 '}'
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(identifier, $4.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(variable, $4.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("82"); $$ = stmt.NewCatch([]node.Node{$3}, variable, $7)
|
2018-02-03 13:24:00 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $8))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("83"); $$ = []node.Node{$1} }
|
2018-01-29 14:42:52 +00:00
|
|
|
| unset_variables ',' unset_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("84"); $$ = append($1, $3) }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("85"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("86"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("87"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("88"); $$ = boolWithToken{false, nil} }
|
2018-02-03 17:33:22 +00:00
|
|
|
| '&'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("89"); $$ = boolWithToken{true, &$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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("90"); $$ = boolWithToken{false, nil} }
|
2018-02-03 17:33:22 +00:00
|
|
|
| T_ELLIPSIS
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("91"); $$ = boolWithToken{true, &$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 '}'
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(name, $3.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("92"); $$ = stmt.NewFunction(name, $2.value, $5, nil, $8, "")
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $9))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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) {
|
|
|
|
case *stmt.Class :
|
|
|
|
name := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($2))
|
|
|
|
n.ClassName = name
|
|
|
|
n.Stmts = $6
|
|
|
|
n.Extends = $3
|
|
|
|
n.Implements = $4
|
|
|
|
|
|
|
|
case *stmt.Trait :
|
|
|
|
// TODO: is it possible that trait extend or implement
|
|
|
|
name := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($2))
|
|
|
|
n.TraitName = name
|
|
|
|
n.Stmts = $6
|
|
|
|
}
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("93"); $$ = $1
|
2018-02-03 17:33:22 +00:00
|
|
|
}
|
|
|
|
| interface_entry T_STRING interface_extends_list '{' class_statement_list '}'
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($2))
|
|
|
|
comments.AddComments(name, $2.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("94"); $$ = stmt.NewInterface(name, $3, $5, "")
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $6))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
class_entry_type:
|
2018-02-03 17:33:22 +00:00
|
|
|
T_CLASS
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("95"); $$ = stmt.NewClass(nil, nil, nil, nil, nil, nil, "")
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_ABSTRACT T_CLASS
|
|
|
|
{
|
|
|
|
classModifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(classModifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(classModifier, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("96"); $$ = stmt.NewClass(nil, []node.Node{classModifier}, nil, nil, nil, nil, "")
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_TRAIT
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("97"); $$ = stmt.NewTrait(nil, nil, "")
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_FINAL T_CLASS
|
|
|
|
{
|
|
|
|
classModifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(classModifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(classModifier, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("98"); $$ = stmt.NewClass(nil, []node.Node{classModifier}, nil, nil, nil, nil, "")
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("99"); $$ = nil }
|
2018-02-03 17:33:22 +00:00
|
|
|
| T_EXTENDS fully_qualified_class_name
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("100"); $$ = $2 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
interface_entry:
|
2018-02-03 17:33:22 +00:00
|
|
|
T_INTERFACE
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("101"); $$ = $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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("102"); $$ = nil }
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_EXTENDS interface_list
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("103"); $$ = $2 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("104"); $$ = nil }
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_IMPLEMENTS interface_list
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("105"); $$ = $2 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
interface_list:
|
2018-02-03 17:33:22 +00:00
|
|
|
fully_qualified_class_name
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("106"); $$ = []node.Node{$1} }
|
2018-02-03 17:33:22 +00:00
|
|
|
| interface_list ',' fully_qualified_class_name
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("107"); $$ = append($1, $3) }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
foreach_optional_arg:
|
2018-02-03 12:41:34 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("108"); $$ = foreachVariable{nil, false} }
|
2018-02-03 12:41:34 +00:00
|
|
|
| T_DOUBLE_ARROW foreach_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("109"); $$ = $2 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("110"); $$ = foreachVariable{$1, false} }
|
2018-02-01 10:35:43 +00:00
|
|
|
| '&' variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("111"); $$ = foreachVariable{$2, true} }
|
2018-02-01 10:35:43 +00:00
|
|
|
| T_LIST '(' assignment_list ')'
|
|
|
|
{
|
|
|
|
list := expr.NewList($3)
|
|
|
|
positions.AddPosition(list, positionBuilder.NewTokensPosition($1, $4))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("112"); $$ = foreachVariable{list, false}
|
2018-02-01 10:35:43 +00:00
|
|
|
comments.AddComments(list, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("113"); $$ = $1; }
|
2018-02-03 12:29:23 +00:00
|
|
|
| ':' inner_statement_list T_ENDFOR ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("114"); $$ = stmt.NewStmtList($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2017-12-01 07:15:46 +00:00
|
|
|
foreach_statement:
|
2018-01-29 14:11:45 +00:00
|
|
|
statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("115"); $$ = $1; }
|
2018-01-29 14:42:52 +00:00
|
|
|
| ':' inner_statement_list T_ENDFOREACH ';'
|
2018-02-03 12:41:34 +00:00
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("116"); $$ = stmt.NewStmtList($2)
|
2018-02-03 12:41:34 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("117"); $$ = $1; }
|
2018-01-29 14:42:52 +00:00
|
|
|
| ':' inner_statement_list T_ENDDECLARE ';'
|
2018-02-03 13:24:00 +00:00
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("118"); $$ = stmt.NewStmtList($2)
|
2018-02-03 13:24:00 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
|
|
|
|
constant := stmt.NewConstant(name, $3, "")
|
|
|
|
positions.AddPosition(constant, positionBuilder.NewTokenNodePosition($1, $3))
|
|
|
|
comments.AddComments(constant, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("119"); $$ = []node.Node{constant}
|
2018-02-03 13:24:00 +00:00
|
|
|
}
|
|
|
|
| declare_list ',' T_STRING '=' static_scalar
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(name, $3.Comments())
|
|
|
|
|
|
|
|
constant := stmt.NewConstant(name, $5, "")
|
|
|
|
positions.AddPosition(constant, positionBuilder.NewTokenNodePosition($3, $5))
|
|
|
|
comments.AddComments(constant, $3.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("120"); $$ = append($1, constant)
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("121"); $$ = &nodesWithEndToken{$2, $3} }
|
2018-02-03 12:29:23 +00:00
|
|
|
| '{' ';' case_list '}'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("122"); $$ = &nodesWithEndToken{$3, $4} }
|
2018-02-03 12:29:23 +00:00
|
|
|
| ':' case_list T_ENDSWITCH ';'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("123"); $$ = &nodesWithEndToken{$2, $4} }
|
2018-02-03 12:29:23 +00:00
|
|
|
| ':' ';' case_list T_ENDSWITCH ';'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("124"); $$ = &nodesWithEndToken{$3, $5} }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("125"); $$ = []node.Node{} }
|
2018-02-03 12:29:23 +00:00
|
|
|
| case_list T_CASE expr case_separator inner_statement_list
|
|
|
|
{
|
|
|
|
_case := stmt.NewCase($3, $5)
|
|
|
|
positions.AddPosition(_case, positionBuilder.NewTokenNodeListPosition($2, $5))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("126"); $$ = append($1, _case)
|
2018-02-03 12:29:23 +00:00
|
|
|
comments.AddComments(_case, $2.Comments())
|
|
|
|
}
|
|
|
|
| case_list T_DEFAULT case_separator inner_statement_list
|
|
|
|
{
|
|
|
|
_default := stmt.NewDefault($4)
|
|
|
|
positions.AddPosition(_default, positionBuilder.NewTokenNodeListPosition($2, $4))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("127"); $$ = append($1, _default)
|
2018-02-03 12:29:23 +00:00
|
|
|
comments.AddComments(_default, $2.Comments())
|
|
|
|
}
|
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-01-29 14:42:52 +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
|
|
|
while_statement:
|
2018-01-29 14:11:45 +00:00
|
|
|
statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("128"); $$ = $1 }
|
2018-01-29 14:42:52 +00:00
|
|
|
| ':' inner_statement_list T_ENDWHILE ';'
|
2018-02-03 12:29:23 +00:00
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("129"); $$ = stmt.NewStmtList($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elseif_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("130"); $$ = nil }
|
2018-02-03 12:29:23 +00:00
|
|
|
| elseif_list T_ELSEIF parenthesis_expr statement
|
|
|
|
{
|
|
|
|
_elseIf := stmt.NewElseIf($3, $4)
|
|
|
|
positions.AddPosition(_elseIf, positionBuilder.NewTokenNodePosition($2, $4))
|
|
|
|
comments.AddComments(_elseIf, $2.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("131"); $$ = append($1, _elseIf)
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("132"); $$ = nil }
|
2018-02-03 12:29:23 +00:00
|
|
|
| new_elseif_list T_ELSEIF parenthesis_expr ':' inner_statement_list
|
|
|
|
{
|
|
|
|
stmts := stmt.NewStmtList($5)
|
|
|
|
positions.AddPosition(stmts, positionBuilder.NewNodeListPosition($5))
|
|
|
|
|
|
|
|
_elseIf := stmt.NewAltElseIf($3, stmts)
|
|
|
|
positions.AddPosition(_elseIf, positionBuilder.NewTokenNodeListPosition($2, $5))
|
|
|
|
comments.AddComments(_elseIf, $2.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("133"); $$ = append($1, _elseIf)
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("134"); $$ = nil }
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_ELSE statement
|
2018-02-03 12:29:23 +00:00
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("135"); $$ = stmt.NewElse($2)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("136"); $$ = nil }
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_ELSE ':' inner_statement_list
|
2018-02-03 12:29:23 +00:00
|
|
|
{
|
|
|
|
stmts := stmt.NewStmtList($3)
|
|
|
|
positions.AddPosition(stmts, positionBuilder.NewNodeListPosition($3))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("137"); $$ = stmt.NewAltElse(stmts)
|
2018-02-03 12:29:23 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("138"); $$ = $1; }
|
2018-01-29 14:42:52 +00:00
|
|
|
| /* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("139"); $$ = nil }
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
non_empty_parameter_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
parameter
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("140"); $$ = []node.Node{$1} }
|
2018-01-29 14:42:52 +00:00
|
|
|
| non_empty_parameter_list ',' parameter
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("141"); $$ = append($1, $3) }
|
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
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments($$, $4.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments($$, $4.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("142"); $$ = node.NewParameter($1, variable, nil, $2.value, $3.value)
|
2018-02-03 17:33:22 +00:00
|
|
|
|
|
|
|
if $1 != nil {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
} else if $2.value == true {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition(*$2.token, $4))
|
|
|
|
comments.AddComments($$, $2.token.Comments())
|
|
|
|
} else if $3.value == true {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition(*$3.token, $4))
|
|
|
|
comments.AddComments($$, $3.token.Comments())
|
|
|
|
} else {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments($$, $4.Comments())
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| optional_class_type is_reference is_variadic T_VARIABLE '=' static_scalar
|
2018-02-03 17:33:22 +00:00
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(identifier, $4.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(variable, $4.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("143"); $$ = node.NewParameter($1, variable, $6, $2.value, $3.value)
|
2018-02-03 17:33:22 +00:00
|
|
|
|
|
|
|
if $1 != nil {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $6))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
} else if $2.value == true {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition(*$2.token, $6))
|
|
|
|
comments.AddComments($$, $2.token.Comments())
|
|
|
|
} else if $3.value == true {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition(*$3.token, $6))
|
|
|
|
comments.AddComments($$, $3.token.Comments())
|
|
|
|
} else {
|
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($4, $6))
|
|
|
|
comments.AddComments($$, $4.Comments())
|
|
|
|
}
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
optional_class_type:
|
2018-02-03 17:33:22 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("144"); $$ = nil }
|
2018-02-03 17:33:22 +00:00
|
|
|
| T_ARRAY
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("145"); $$ = node.NewIdentifier($1.Value)
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_CALLABLE
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("146"); $$ = node.NewIdentifier($1.Value)
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| fully_qualified_class_name
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("147"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
function_call_parameter_list:
|
2018-02-01 14:07:18 +00:00
|
|
|
'(' ')'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("148"); $$ = &nodesWithEndToken{[]node.Node{}, $2} }
|
2018-02-03 18:13:11 +00:00
|
|
|
| '(' non_empty_function_call_parameter_list ')'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("149"); $$ = &nodesWithEndToken{$2, $3} }
|
2018-02-03 18:13:11 +00:00
|
|
|
| '(' yield_expr ')'
|
|
|
|
{
|
|
|
|
arg := node.NewArgument($2, false, false)
|
|
|
|
positions.AddPosition(arg, positionBuilder.NewNodePosition($2))
|
|
|
|
comments.AddComments(arg, comments[$2])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("150"); $$ = &nodesWithEndToken{[]node.Node{arg}, $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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("151"); $$ = []node.Node{$1} }
|
2018-01-29 14:42:52 +00:00
|
|
|
| non_empty_function_call_parameter_list ',' function_call_parameter
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("152"); $$ = append($1, $3) }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
function_call_parameter:
|
2018-02-03 18:13:11 +00:00
|
|
|
expr_without_variable
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("153"); $$ = node.NewArgument($1, false, false)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition($1))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("154"); $$ = node.NewArgument($1, false, false)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition($1))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| '&' w_variable
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("155"); $$ = node.NewArgument($2, false, true)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition($2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_ELLIPSIS expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("156"); $$ = node.NewArgument($2, true, false)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("157"); $$ = append($1, $3) }
|
2018-02-03 12:29:23 +00:00
|
|
|
| global_var
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("158"); $$ = []node.Node{$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
|
|
|
global_var:
|
2018-01-31 10:29:38 +00:00
|
|
|
T_VARIABLE
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("159"); $$ = expr.NewVariable(name)
|
2018-01-31 10:29:38 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '$' r_variable
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("160"); $$ = expr.NewVariable($2)
|
2018-01-31 10:29:38 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '$' '{' expr '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("161"); $$ = expr.NewVariable($3)
|
2018-01-31 10:29:38 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($3))
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($3))
|
|
|
|
|
|
|
|
staticVar := stmt.NewStaticVar(variable, nil)
|
|
|
|
positions.AddPosition(staticVar, positionBuilder.NewTokenPosition($3))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("162"); $$ = append($1, staticVar)
|
2018-01-31 10:29:38 +00:00
|
|
|
|
|
|
|
comments.AddComments(identifier, $3.Comments())
|
|
|
|
comments.AddComments(variable, $3.Comments())
|
|
|
|
comments.AddComments(staticVar, $3.Comments())
|
|
|
|
}
|
|
|
|
| static_var_list ',' T_VARIABLE '=' static_scalar
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($3))
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($3))
|
|
|
|
|
|
|
|
staticVar := stmt.NewStaticVar(variable, $5)
|
|
|
|
positions.AddPosition(staticVar, positionBuilder.NewTokenNodePosition($3, $5))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("163"); $$ = append($1, staticVar)
|
2018-01-31 10:29:38 +00:00
|
|
|
|
|
|
|
comments.AddComments(identifier, $3.Comments())
|
|
|
|
comments.AddComments(variable, $3.Comments())
|
|
|
|
comments.AddComments(staticVar, $3.Comments())
|
|
|
|
}
|
|
|
|
| T_VARIABLE
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
|
|
|
staticVar := stmt.NewStaticVar(variable, nil)
|
|
|
|
positions.AddPosition(staticVar, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("164"); $$ = []node.Node{staticVar}
|
2018-01-31 10:29:38 +00:00
|
|
|
|
|
|
|
comments.AddComments(identifier, $1.Comments())
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
comments.AddComments(staticVar, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_VARIABLE '=' static_scalar
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
|
|
|
staticVar := stmt.NewStaticVar(variable, $3)
|
|
|
|
positions.AddPosition(staticVar, positionBuilder.NewTokenNodePosition($1, $3))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("165"); $$ = []node.Node{staticVar}
|
2018-01-31 10:29:38 +00:00
|
|
|
|
|
|
|
comments.AddComments(identifier, $1.Comments())
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
comments.AddComments(staticVar, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("166"); $$ = append($1, $2) }
|
2018-01-29 14:42:52 +00:00
|
|
|
| /* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("167"); $$ = []node.Node{} }
|
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 ';'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("168"); $$ = stmt.NewPropertyList($1, $2)
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($1, $3))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
2018-01-29 14:42:52 +00:00
|
|
|
| class_constant_declaration ';'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("169"); $$ = $1 }
|
2018-01-29 14:42:52 +00:00
|
|
|
| trait_use_statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("170"); $$ = $1 }
|
2018-02-03 17:33:22 +00:00
|
|
|
| method_modifiers function is_reference T_STRING '(' parameter_list ')' method_body
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(name, $4.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("171"); $$ = stmt.NewClassMethod(name, $1, $3.value, $6, nil, $8.nodes, "")
|
2018-02-03 17:33:22 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewOptionalListTokensPosition($1, $2, $8.endToken))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
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
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("172"); $$ = stmt.NewTraitUse($2, $3.nodes)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3.endToken))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_list:
|
2018-02-03 22:09:37 +00:00
|
|
|
fully_qualified_class_name
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("173"); $$ = []node.Node{$1} }
|
2018-02-03 22:09:37 +00:00
|
|
|
| trait_list ',' fully_qualified_class_name
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("174"); $$ = append($1, $3) }
|
2017-11-29 21:43:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_adaptations:
|
2018-01-29 14:11:45 +00:00
|
|
|
';'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("175"); $$ = &nodesWithEndToken{nil, $1} }
|
2018-01-29 14:42:52 +00:00
|
|
|
| '{' trait_adaptation_list '}'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("176"); $$ = &nodesWithEndToken{$2, $3} }
|
2017-11-29 21:43:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_adaptation_list:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("177"); $$ = nil }
|
2018-01-29 14:42:52 +00:00
|
|
|
| non_empty_trait_adaptation_list
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("178"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("179"); $$ = []node.Node{$1} }
|
2018-01-29 14:42:52 +00:00
|
|
|
| non_empty_trait_adaptation_list trait_adaptation_statement
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("180"); $$ = append($1, $2) }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("181"); $$ = $1 }
|
2018-01-29 14:42:52 +00:00
|
|
|
| trait_alias ';'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("182"); $$ = $1 }
|
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
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("183"); $$ = stmt.NewTraitUsePrecedence($1, $3)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeNodeListPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("184"); $$ = []node.Node{$1} }
|
2018-02-03 22:09:37 +00:00
|
|
|
| trait_reference_list ',' fully_qualified_class_name
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("185"); $$ = append($1, $3) }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
trait_method_reference:
|
2018-02-03 22:09:37 +00:00
|
|
|
T_STRING
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("186"); $$ = stmt.NewTraitMethodRef(nil, name)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| trait_method_reference_fully_qualified
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("187"); $$ = $1 }
|
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
|
|
|
|
{
|
|
|
|
target := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(target, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(target, $3.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("188"); $$ = stmt.NewTraitMethodRef($1, target)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
alias := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(alias, positionBuilder.NewTokenPosition($4))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("189"); $$ = stmt.NewTraitUseAlias($1, $3, alias)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
|
|
|
|
comments.AddComments(alias, $4.Comments())
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| trait_method_reference T_AS member_modifier
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("190"); $$ = stmt.NewTraitUseAlias($1, $3, nil)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("191"); $$ = nil }
|
2018-02-03 22:09:37 +00:00
|
|
|
| member_modifier
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("192"); $$ = $1 }
|
2017-11-29 22:07:15 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
method_body:
|
2018-02-03 22:37:43 +00:00
|
|
|
';' /* abstract method */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("193"); $$ = &nodesWithEndToken{nil, $1} }
|
2018-02-03 22:37:43 +00:00
|
|
|
| '{' inner_statement_list '}'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("194"); $$ = &nodesWithEndToken{$2, $3} }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("195"); $$ = $1; }
|
2018-02-03 22:37:43 +00:00
|
|
|
| T_VAR
|
|
|
|
{
|
|
|
|
modifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(modifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(modifier, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("196"); $$ = []node.Node{modifier}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("197"); $$ = nil }
|
2018-02-03 22:37:43 +00:00
|
|
|
| non_empty_member_modifiers
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("198"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("199"); $$ = []node.Node{$1} }
|
2018-02-03 22:37:43 +00:00
|
|
|
| non_empty_member_modifiers member_modifier
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("200"); $$ = append($1, $2) }
|
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
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("201"); $$ = node.NewIdentifier($1.Value)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_PROTECTED
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("202"); $$ = node.NewIdentifier($1.Value)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_PRIVATE
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("203"); $$ = node.NewIdentifier($1.Value)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_STATIC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("204"); $$ = node.NewIdentifier($1.Value)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_ABSTRACT
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("205"); $$ = node.NewIdentifier($1.Value)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_FINAL
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("206"); $$ = node.NewIdentifier($1.Value)
|
2018-02-03 22:09:37 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
class_variable_declaration:
|
2018-02-03 22:37:43 +00:00
|
|
|
class_variable_declaration ',' T_VARIABLE
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(identifier, $3.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(variable, $3.Comments())
|
|
|
|
|
|
|
|
property := stmt.NewProperty(variable, nil, "")
|
|
|
|
positions.AddPosition(property, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(property, $3.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("207"); $$ = append($1, property)
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
|
|
|
| class_variable_declaration ',' T_VARIABLE '=' static_scalar
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(identifier, $3.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(variable, $3.Comments())
|
|
|
|
|
|
|
|
property := stmt.NewProperty(variable, $5, "")
|
|
|
|
positions.AddPosition(property, positionBuilder.NewTokenNodePosition($3, $5))
|
|
|
|
comments.AddComments(property, $3.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("208"); $$ = append($1, property)
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(identifier, $1.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
|
|
|
|
property := stmt.NewProperty(variable, nil, "")
|
|
|
|
positions.AddPosition(property, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(property, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("209"); $$ = []node.Node{property}
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE '=' static_scalar
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(identifier, $1.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
|
|
|
|
property := stmt.NewProperty(variable, $3, "")
|
|
|
|
positions.AddPosition(property, positionBuilder.NewTokenNodePosition($1, $3))
|
|
|
|
comments.AddComments(property, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("210"); $$ = []node.Node{property}
|
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
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(name, $3.Comments())
|
|
|
|
|
|
|
|
constant := stmt.NewConstant(name, $5, "")
|
|
|
|
positions.AddPosition(constant, positionBuilder.NewTokenNodePosition($3, $5))
|
|
|
|
comments.AddComments(constant, $3.Comments())
|
|
|
|
|
2018-02-08 17:52:22 +00:00
|
|
|
$1.(*stmt.ClassConstList).Consts = append($1.(*stmt.ClassConstList).Consts, constant)
|
2018-02-03 22:37:43 +00:00
|
|
|
positions.AddPosition($1, positionBuilder.NewNodesPosition($1, $5))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("211"); $$ = $1
|
2018-02-03 22:37:43 +00:00
|
|
|
}
|
|
|
|
| T_CONST T_STRING '=' static_scalar
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($2))
|
|
|
|
comments.AddComments(name, $2.Comments())
|
|
|
|
|
|
|
|
constant := stmt.NewConstant(name, $4, "")
|
|
|
|
positions.AddPosition(constant, positionBuilder.NewTokenNodePosition($2, $4))
|
|
|
|
comments.AddComments(constant, $2.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("212"); $$ = stmt.NewClassConstList(nil, []node.Node{constant})
|
2018-02-03 22:37:43 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("213"); $$ = append($1, $3) }
|
2018-02-03 12:29:23 +00:00
|
|
|
| expr
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("214"); $$ = []node.Node{$1} }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
for_expr:
|
2018-02-03 12:29:23 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("215"); $$ = nil }
|
2018-02-03 12:29:23 +00:00
|
|
|
| non_empty_for_expr
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("216"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("217"); $$ = append($1, $3) }
|
2018-02-03 12:29:23 +00:00
|
|
|
| expr
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("218"); $$ = []node.Node{$1} }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("219"); $$ = append($1, $2...) }
|
2018-02-04 16:51:44 +00:00
|
|
|
| variable_property
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("220"); $$ = $1 }
|
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 ']'
|
|
|
|
{
|
|
|
|
fetch := expr.NewArrayDimFetch(nil, $3)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewNodePosition($3))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("221"); $$ = append($1, fetch)
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
| '[' dim_offset ']'
|
|
|
|
{
|
|
|
|
fetch := expr.NewArrayDimFetch(nil, $2)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewNodePosition($2))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("222"); $$ = []node.Node{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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("223"); $$ = append($1, $2...) }
|
2018-02-04 16:51:44 +00:00
|
|
|
| chaining_dereference
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("224"); $$ = $1 }
|
2018-02-04 16:51:44 +00:00
|
|
|
| chaining_method_or_property
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("225"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("226"); $$ = nil }
|
2018-02-04 16:51:44 +00:00
|
|
|
| chaining_instance_call
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("227"); $$ = $1 }
|
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 {
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("228"); $$ = expr.NewNew($2, $3.nodes)
|
2018-02-01 14:07:18 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3.endToken))
|
|
|
|
} else {
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("229"); $$ = expr.NewNew($2, nil)
|
2018-02-01 14:07:18 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
}
|
|
|
|
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2017-11-28 16:00:27 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
expr_without_variable:
|
2018-02-01 10:35:43 +00:00
|
|
|
T_LIST '(' assignment_list ')' '=' expr
|
|
|
|
{
|
|
|
|
list := expr.NewList($3)
|
|
|
|
positions.AddPosition(list, positionBuilder.NewTokensPosition($1, $4))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("230"); $$ = assign_op.NewAssign(list, $6)
|
2018-02-01 10:35:43 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $6))
|
|
|
|
|
|
|
|
comments.AddComments(list, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| variable '=' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("231"); $$ = assign_op.NewAssign($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable '=' '&' variable
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("232"); $$ = assign_op.NewAssignRef($1, $4)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable '=' '&' T_NEW class_name_reference ctor_arguments
|
|
|
|
{
|
|
|
|
_new := expr.NewNew($5, nil)
|
|
|
|
positions.AddPosition(_new, positionBuilder.NewTokenNodePosition($4, $5))
|
|
|
|
|
|
|
|
if $6 != nil {
|
2018-02-13 11:38:57 +00:00
|
|
|
_new = expr.NewNew($5, $6.nodes)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition(_new, positionBuilder.NewTokensPosition($4, $6.endToken))
|
|
|
|
}
|
|
|
|
comments.AddComments(_new, comments[$1])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("233"); $$ = assign_op.NewAssignRef($1, _new)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, _new))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| T_CLONE expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("234"); $$ = expr.NewClone($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| variable T_PLUS_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("235"); $$ = assign_op.NewPlus($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_MINUS_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("236"); $$ = assign_op.NewMinus($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_MUL_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("237"); $$ = assign_op.NewMul($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_POW_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("238"); $$ = assign_op.NewPow($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_DIV_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("239"); $$ = assign_op.NewDiv($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_CONCAT_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("240"); $$ = assign_op.NewConcat($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_MOD_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("241"); $$ = assign_op.NewMod($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_AND_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("242"); $$ = assign_op.NewBitwiseAnd($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_OR_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("243"); $$ = assign_op.NewBitwiseOr($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_XOR_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("244"); $$ = assign_op.NewBitwiseXor($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_SL_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("245"); $$ = assign_op.NewShiftLeft($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable T_SR_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("246"); $$ = assign_op.NewShiftRight($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| rw_variable T_INC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("247"); $$ = expr.NewPostInc($1)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $2))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| T_INC rw_variable
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("248"); $$ = expr.NewPreInc($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| rw_variable T_DEC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("249"); $$ = expr.NewPostDec($1)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $2))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| T_DEC rw_variable
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("250"); $$ = expr.NewPreDec($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| expr T_BOOLEAN_OR expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("251"); $$ = binary_op.NewBooleanOr($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_BOOLEAN_AND expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("252"); $$ = binary_op.NewBooleanAnd($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_LOGICAL_OR expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("253"); $$ = binary_op.NewLogicalOr($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_LOGICAL_AND expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("254"); $$ = binary_op.NewLogicalAnd($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_LOGICAL_XOR expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("255"); $$ = binary_op.NewLogicalXor($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '|' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("256"); $$ = binary_op.NewBitwiseOr($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '&' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("257"); $$ = binary_op.NewBitwiseAnd($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '^' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("258"); $$ = binary_op.NewBitwiseXor($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '.' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("259"); $$ = binary_op.NewConcat($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '+' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("260"); $$ = binary_op.NewPlus($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '-' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("261"); $$ = binary_op.NewMinus($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '*' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("262"); $$ = binary_op.NewMul($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_POW expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("263"); $$ = binary_op.NewPow($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '/' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("264"); $$ = binary_op.NewDiv($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '%' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("265"); $$ = binary_op.NewMod($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_SL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("266"); $$ = binary_op.NewShiftLeft($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_SR expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("267"); $$ = binary_op.NewShiftRight($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| '+' expr %prec T_INC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("268"); $$ = expr.NewUnaryPlus($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '-' expr %prec T_INC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("269"); $$ = expr.NewUnaryMinus($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '!' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("270"); $$ = expr.NewBooleanNot($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '~' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("271"); $$ = expr.NewBitwiseNot($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| expr T_IS_IDENTICAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("272"); $$ = binary_op.NewIdentical($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_IS_NOT_IDENTICAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("273"); $$ = binary_op.NewNotIdentical($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_IS_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("274"); $$ = binary_op.NewEqual($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_IS_NOT_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("275"); $$ = binary_op.NewNotEqual($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '<' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("276"); $$ = binary_op.NewSmaller($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_IS_SMALLER_OR_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("277"); $$ = binary_op.NewSmallerOrEqual($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '>' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("278"); $$ = binary_op.NewGreater($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_IS_GREATER_OR_EQUAL expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("279"); $$ = binary_op.NewGreaterOrEqual($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr T_INSTANCEOF class_name_reference
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("280"); $$ = expr.NewInstanceOf($1, $3)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| parenthesis_expr
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("281"); $$ = $1 }
|
2018-02-01 14:07:18 +00:00
|
|
|
| new_expr
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("282"); $$ = $1 }
|
2018-02-04 16:51:44 +00:00
|
|
|
| '(' new_expr ')' instance_call
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("283"); $$ = $2
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
for _, n := range($4) {
|
|
|
|
switch nn := n.(type) {
|
|
|
|
case *expr.ArrayDimFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, $1.Comments())
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("284"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
case *expr.PropertyFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, $1.Comments())
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("285"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
case *expr.MethodCall:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, $1.Comments())
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("286"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 17:37:27 +00:00
|
|
|
| expr '?' expr ':' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("287"); $$ = expr.NewTernary($1, $3, $5)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $5))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| expr '?' ':' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("288"); $$ = expr.NewTernary($1, nil, $4)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| internal_functions_in_yacc
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("289"); $$ = $1 }
|
2018-02-04 17:37:27 +00:00
|
|
|
| T_INT_CAST expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("290"); $$ = cast.NewCastInt($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_DOUBLE_CAST expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("291"); $$ = cast.NewCastDouble($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_STRING_CAST expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("292"); $$ = cast.NewCastString($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_ARRAY_CAST expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("293"); $$ = cast.NewCastArray($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_OBJECT_CAST expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("294"); $$ = cast.NewCastObject($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_BOOL_CAST expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("295"); $$ = cast.NewCastBool($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_UNSET_CAST expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("296"); $$ = cast.NewCastUnset($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_EXIT exit_expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("297"); $$ = expr.NewExit($2, strings.EqualFold($1.Value, "die"))
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '@' expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("298"); $$ = expr.NewErrorSuppress($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| scalar
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("299"); $$ = $1 }
|
2018-02-04 17:37:27 +00:00
|
|
|
| combined_scalar_offset
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("300"); $$ = $1 }
|
2018-02-04 17:37:27 +00:00
|
|
|
| combined_scalar
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("301"); $$ = $1 }
|
2018-02-04 17:37:27 +00:00
|
|
|
| '`' backticks_expr '`'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("302"); $$ = expr.NewShellExec($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_PRINT expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("303"); $$ = expr.NewPrint($2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_YIELD
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("304"); $$ = expr.NewYield(nil, nil)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| function is_reference '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("305"); $$ = expr.NewClosure($4, $6, nil, $8, false, $2.value, "")
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $9))
|
|
|
|
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_STATIC function is_reference '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("306"); $$ = expr.NewClosure($5, $7, nil, $9, true, $3.value, "")
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $10))
|
|
|
|
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
yield_expr:
|
2018-02-04 17:37:27 +00:00
|
|
|
T_YIELD expr_without_variable
|
|
|
|
{
|
2018-02-12 21:10:53 +00:00
|
|
|
fmt.Println("307"); $$ = expr.NewYield(nil, $2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_YIELD variable
|
|
|
|
{
|
2018-02-12 21:10:53 +00:00
|
|
|
fmt.Println("308"); $$ = expr.NewYield(nil, $2)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_YIELD expr T_DOUBLE_ARROW expr_without_variable
|
|
|
|
{
|
2018-02-12 21:10:53 +00:00
|
|
|
fmt.Println("309"); $$ = expr.NewYield($2, $4)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_YIELD expr T_DOUBLE_ARROW variable
|
|
|
|
{
|
2018-02-12 21:10:53 +00:00
|
|
|
fmt.Println("310"); $$ = expr.NewYield($2, $4)
|
2018-02-04 17:37:27 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
combined_scalar_offset:
|
2018-02-02 12:36:57 +00:00
|
|
|
combined_scalar '[' dim_offset ']'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("311"); $$ = expr.NewArrayDimFetch($1, $3)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| combined_scalar_offset '[' dim_offset ']'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("312"); $$ = expr.NewArrayDimFetch($1, $3)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| T_CONSTANT_ENCAPSED_STRING '[' dim_offset ']'
|
|
|
|
{
|
|
|
|
str := scalar.NewString($1.Value)
|
|
|
|
positions.AddPosition(str, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(str, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("313"); $$ = expr.NewArrayDimFetch(str, $3)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition(str, $4))
|
|
|
|
comments.AddComments($$, comments[str])
|
|
|
|
}
|
|
|
|
| general_constant '[' dim_offset ']'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("314"); $$ = expr.NewArrayDimFetch($1, $3)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
combined_scalar:
|
2018-02-02 12:36:57 +00:00
|
|
|
T_ARRAY '(' array_pair_list ')'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("315"); $$ = expr.NewArray($3)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '[' array_pair_list ']'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("316"); $$ = expr.NewShortArray($2)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
function:
|
2018-02-02 12:36:57 +00:00
|
|
|
T_FUNCTION
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("317"); $$ = $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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("318"); $$ = []node.Node{} }
|
2018-01-29 14:42:52 +00:00
|
|
|
| T_USE '(' lexical_var_list ')'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("319"); $$ = $3; }
|
2017-11-30 19:14:26 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
lexical_var_list:
|
2018-02-02 12:36:57 +00:00
|
|
|
lexical_var_list ',' T_VARIABLE
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(identifier, $3.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(variable, $3.Comments())
|
|
|
|
|
2018-02-10 00:02:54 +00:00
|
|
|
use := expr.NewClosureUse(variable, false)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition(use, positionBuilder.NewTokenPosition($3))
|
|
|
|
comments.AddComments(use, $3.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("320"); $$ = append($1, use)
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| lexical_var_list ',' '&' T_VARIABLE
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($4.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(identifier, $4.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($4))
|
|
|
|
comments.AddComments(variable, $3.Comments())
|
|
|
|
|
2018-02-10 00:02:54 +00:00
|
|
|
use := expr.NewClosureUse(variable, true)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition(use, positionBuilder.NewTokensPosition($3, $4))
|
|
|
|
comments.AddComments(use, $3.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("321"); $$ = append($1, use)
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_VARIABLE
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(identifier, $1.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
|
2018-02-10 00:02:54 +00:00
|
|
|
use := expr.NewClosureUse(variable, false)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition(use, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(use, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("322"); $$ = []node.Node{use}
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| '&' T_VARIABLE
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($2))
|
|
|
|
comments.AddComments(identifier, $2.Comments())
|
|
|
|
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($2))
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
|
2018-02-10 00:02:54 +00:00
|
|
|
use := expr.NewClosureUse(variable, true)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition(use, positionBuilder.NewTokensPosition($1, $2))
|
|
|
|
comments.AddComments(use, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("323"); $$ = []node.Node{use}
|
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
|
|
|
|
{
|
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("324"); $$ = expr.NewFunctionCall(name, $2.nodes)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition(name, $2.endToken))
|
|
|
|
comments.AddComments($$, comments[name])
|
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name function_call_parameter_list
|
|
|
|
{
|
|
|
|
funcName := name.NewRelative($3)
|
|
|
|
positions.AddPosition(funcName, positionBuilder.NewTokenNodeListPosition($1, $3))
|
|
|
|
comments.AddComments(funcName, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("325"); $$ = expr.NewFunctionCall(funcName, $4.nodes)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition(funcName, $4.endToken))
|
|
|
|
comments.AddComments($$, comments[funcName])
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name function_call_parameter_list
|
|
|
|
{
|
|
|
|
funcName := name.NewFullyQualified($2)
|
|
|
|
positions.AddPosition(funcName, positionBuilder.NewTokenNodeListPosition($1, $2))
|
|
|
|
comments.AddComments(funcName, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("326"); $$ = expr.NewFunctionCall(funcName, $3.nodes)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition(funcName, $3.endToken))
|
|
|
|
comments.AddComments($$, comments[funcName])
|
|
|
|
}
|
|
|
|
| class_name T_PAAMAYIM_NEKUDOTAYIM variable_name function_call_parameter_list
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("327"); $$ = expr.NewStaticCall($1, $3, $4.nodes)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4.endToken))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects function_call_parameter_list
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("328"); $$ = expr.NewStaticCall($1, $3, $4.nodes)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4.endToken))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_name function_call_parameter_list
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("329"); $$ = expr.NewStaticCall($1, $3, $4.nodes)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4.endToken))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects function_call_parameter_list
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("330"); $$ = expr.NewStaticCall($1, $3, $4.nodes)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4.endToken))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable_without_objects function_call_parameter_list
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("331"); $$ = expr.NewFunctionCall($1, $2.nodes)
|
2018-02-03 18:13:11 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $2.endToken))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
class_name:
|
2018-01-29 14:37:09 +00:00
|
|
|
T_STATIC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("332"); $$ = node.NewIdentifier($1.Value)
|
2018-01-29 14:37:09 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| namespace_name
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("333"); $$ = name.NewName($1)
|
2018-01-29 14:37:09 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListPosition($1))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("334"); $$ = name.NewRelative($3)
|
2018-01-29 14:37:09 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("335"); $$ = name.NewFullyQualified($2)
|
2018-01-29 14:37:09 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("336"); $$ = name.NewName($1)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListPosition($1))
|
|
|
|
comments.AddComments($$, ListGetFirstNodeComments($1))
|
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("337"); $$ = name.NewRelative($3)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("338"); $$ = name.NewFullyQualified($2)
|
2018-02-02 12:36:57 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("339"); $$ = $1 }
|
2018-02-01 14:07:18 +00:00
|
|
|
| dynamic_class_name_reference
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("340"); $$ = $1 }
|
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-12 13:08:08 +00:00
|
|
|
fmt.Println("341"); $$ = $1
|
2018-02-01 14:07:18 +00:00
|
|
|
|
2018-02-04 16:51:44 +00:00
|
|
|
for _, n := range($3) {
|
|
|
|
switch nn := n.(type) {
|
|
|
|
case *expr.ArrayDimFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("342"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
case *expr.PropertyFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("343"); $$ = 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) {
|
|
|
|
case *expr.ArrayDimFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("345"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
case *expr.PropertyFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("346"); $$ = nn
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
| base_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("348"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("349"); $$ = append($1, $2...) }
|
2018-01-29 14:42:52 +00:00
|
|
|
| /* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("350"); $$ = []node.Node{} }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("351"); $$ = $2 }
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
exit_expr:
|
2018-02-02 13:01:03 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("352"); $$ = nil }
|
2018-02-02 13:01:03 +00:00
|
|
|
| '(' ')'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("353"); $$ = nil }
|
2018-02-02 13:01:03 +00:00
|
|
|
| parenthesis_expr
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("354"); $$ = $1 }
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
backticks_expr:
|
2018-02-04 17:37:27 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("355"); $$ = []node.Node{} }
|
2018-02-04 17:37:27 +00:00
|
|
|
| T_ENCAPSED_AND_WHITESPACE
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("356"); $$ = []node.Node{scalar.NewEncapsedStringPart($1.Value)} }
|
2018-02-04 17:37:27 +00:00
|
|
|
| encaps_list
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("357"); $$ = $1; }
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
ctor_arguments:
|
2018-02-01 14:07:18 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("358"); $$ = nil }
|
2018-02-01 14:07:18 +00:00
|
|
|
| function_call_parameter_list
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("359"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
common_scalar:
|
2018-01-29 14:22:04 +00:00
|
|
|
T_LNUMBER
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("360"); $$ = scalar.NewLnumber($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_DNUMBER
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("361"); $$ = scalar.NewDnumber($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-02-01 14:07:18 +00:00
|
|
|
| T_CONSTANT_ENCAPSED_STRING
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("362"); $$ = scalar.NewString($1.Value)
|
2018-02-01 14:07:18 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-29 14:22:04 +00:00
|
|
|
| T_LINE
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("363"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_FILE
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("364"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_DIR
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("365"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_TRAIT_C
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("366"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_METHOD_C
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("367"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_FUNC_C
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("368"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_NS_C
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("369"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-01-29 14:22:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-31 10:55:50 +00:00
|
|
|
| T_START_HEREDOC T_ENCAPSED_AND_WHITESPACE T_END_HEREDOC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("370"); $$ = scalar.NewString($2.Value)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))/* TODO: mark as Heredoc*/
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_START_HEREDOC T_END_HEREDOC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("371"); $$ = scalar.NewEncapsed(nil)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
target := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(target, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("372"); $$ = expr.NewClassConstFetch($1, target)
|
2018-01-29 14:37:09 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(target, $3.Comments())
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
2018-02-04 18:55:45 +00:00
|
|
|
static_scalar:
|
|
|
|
static_scalar_value
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("373"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static_scalar_value:
|
2018-02-04 18:55:45 +00:00
|
|
|
common_scalar
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("374"); $$ = $1 }
|
2018-02-04 18:55:45 +00:00
|
|
|
| static_class_name_scalar
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("375"); $$ = $1 }
|
2018-02-04 18:55:45 +00:00
|
|
|
| namespace_name
|
|
|
|
{
|
2018-02-12 10:09:56 +00:00
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("376"); $$ = expr.NewConstFetch(name)
|
2018-02-12 10:09:56 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition(name))
|
|
|
|
comments.AddComments($$, comments[name])
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2018-02-12 10:09:56 +00:00
|
|
|
name := name.NewRelative($3)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenNodeListPosition($1, $3))
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("377"); $$ = expr.NewConstFetch(name)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $3))
|
2018-02-12 10:09:56 +00:00
|
|
|
comments.AddComments($$, comments[name])
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2018-02-12 10:09:56 +00:00
|
|
|
name := name.NewFullyQualified($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenNodeListPosition($1, $2))
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("378"); $$ = expr.NewConstFetch(name)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $2))
|
2018-02-12 10:09:56 +00:00
|
|
|
comments.AddComments($$, comments[name])
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| T_ARRAY '(' static_array_pair_list ')'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("379"); $$ = expr.NewArray($3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '[' static_array_pair_list ']'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("380"); $$ = expr.NewShortArray($2)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| static_class_constant
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("381"); $$ = $1 }
|
2018-02-04 18:55:45 +00:00
|
|
|
| T_CLASS_C
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("382"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| static_operation
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("383"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static_operation:
|
2018-02-04 18:55:45 +00:00
|
|
|
static_scalar_value '[' static_scalar_value ']'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("384"); $$ = expr.NewArrayDimFetch($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '+' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("385"); $$ = binary_op.NewPlus($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '-' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("386"); $$ = binary_op.NewMinus($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '*' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("387"); $$ = binary_op.NewMul($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_POW static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("388"); $$ = binary_op.NewPow($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '/' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("389"); $$ = binary_op.NewDiv($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '%' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("390"); $$ = binary_op.NewMod($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| '!' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("391"); $$ = expr.NewBooleanNot($2)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '~' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("392"); $$ = expr.NewBitwiseNot($2)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| static_scalar_value '|' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("393"); $$ = binary_op.NewBitwiseOr($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '&' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("394"); $$ = binary_op.NewBitwiseAnd($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '^' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("395"); $$ = binary_op.NewBitwiseXor($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_SL static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("396"); $$ = binary_op.NewShiftLeft($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_SR static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("397"); $$ = binary_op.NewShiftRight($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '.' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("398"); $$ = binary_op.NewConcat($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_LOGICAL_XOR static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("399"); $$ = binary_op.NewLogicalXor($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_LOGICAL_AND static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("400"); $$ = binary_op.NewLogicalAnd($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_LOGICAL_OR static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("401"); $$ = binary_op.NewLogicalOr($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_BOOLEAN_AND static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("402"); $$ = binary_op.NewBooleanAnd($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_BOOLEAN_OR static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("403"); $$ = binary_op.NewBooleanOr($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_IDENTICAL static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("404"); $$ = binary_op.NewIdentical($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_NOT_IDENTICAL static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("405"); $$ = binary_op.NewNotIdentical($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_EQUAL static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("406"); $$ = binary_op.NewEqual($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_NOT_EQUAL static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("407"); $$ = binary_op.NewNotEqual($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '<' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("408"); $$ = binary_op.NewSmaller($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '>' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("409"); $$ = binary_op.NewGreater($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_SMALLER_OR_EQUAL static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("410"); $$ = binary_op.NewSmallerOrEqual($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value T_IS_GREATER_OR_EQUAL static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("411"); $$ = binary_op.NewGreaterOrEqual($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '?' ':' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("412"); $$ = expr.NewTernary($1, nil, $4)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| static_scalar_value '?' static_scalar_value ':' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("413"); $$ = expr.NewTernary($1, $3, $5)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $5))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| '+' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("414"); $$ = expr.NewUnaryPlus($2)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '-' static_scalar_value
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("415"); $$ = expr.NewUnaryMinus($2)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '(' static_scalar_value ')'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("416"); $$ = $2 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
general_constant:
|
2018-02-02 12:36:57 +00:00
|
|
|
class_constant
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("417"); $$ = $1 }
|
2018-02-02 12:36:57 +00:00
|
|
|
| namespace_name
|
|
|
|
{
|
2018-02-10 09:46:18 +00:00
|
|
|
name := name.NewName($1)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewNodeListPosition($1))
|
|
|
|
comments.AddComments(name, ListGetFirstNodeComments($1))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("418"); $$ = expr.NewConstFetch(name)
|
2018-02-10 09:46:18 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition(name))
|
|
|
|
comments.AddComments($$, comments[name])
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_NAMESPACE T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2018-02-10 09:46:18 +00:00
|
|
|
name := name.NewRelative($3)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenNodeListPosition($1, $3))
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("419"); $$ = expr.NewConstFetch(name)
|
2018-02-10 09:46:18 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition(name))
|
|
|
|
comments.AddComments($$, comments[name])
|
2018-02-02 12:36:57 +00:00
|
|
|
}
|
|
|
|
| T_NS_SEPARATOR namespace_name
|
|
|
|
{
|
2018-02-10 09:46:18 +00:00
|
|
|
name := name.NewFullyQualified($2)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenNodeListPosition($1, $2))
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("420"); $$ = expr.NewConstFetch(name)
|
2018-02-10 09:46:18 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition(name))
|
|
|
|
comments.AddComments($$, comments[name])
|
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
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("421"); $$ = expr.NewVariable(name)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| general_constant
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("422"); $$ = $1 }
|
2018-01-31 10:55:50 +00:00
|
|
|
| class_name_scalar
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("423"); $$ = $1 }
|
2018-01-31 10:55:50 +00:00
|
|
|
| common_scalar
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("424"); $$ = $1 }
|
2018-01-31 10:55:50 +00:00
|
|
|
| '"' encaps_list '"'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("425"); $$ = scalar.NewEncapsed($2)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_START_HEREDOC encaps_list T_END_HEREDOC
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("426"); $$ = scalar.NewEncapsed($2)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_CLASS_C
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("427"); $$ = scalar.NewMagicConstant($1.Value)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static_array_pair_list:
|
2018-02-04 18:55:45 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("428"); $$ = nil }
|
2018-02-04 18:55:45 +00:00
|
|
|
| non_empty_static_array_pair_list possible_comma
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("429"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
possible_comma:
|
2018-01-29 14:11:45 +00:00
|
|
|
/* empty */
|
2018-01-29 14:42:52 +00:00
|
|
|
| ','
|
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
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem($3, $5, false)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodesPosition($3, $5))
|
|
|
|
comments.AddComments(arrayItem, comments[$3])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("430"); $$ = append($1, arrayItem)
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| non_empty_static_array_pair_list ',' static_scalar_value
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem(nil, $3, false)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodePosition($3))
|
|
|
|
comments.AddComments(arrayItem, comments[$3])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("431"); $$ = append($1, arrayItem)
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value T_DOUBLE_ARROW static_scalar_value
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem($1, $3, false)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments(arrayItem, comments[$1])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("432"); $$ = []node.Node{arrayItem}
|
2018-02-04 18:55:45 +00:00
|
|
|
}
|
|
|
|
| static_scalar_value
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem(nil, $1, false)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodePosition($1))
|
|
|
|
comments.AddComments(arrayItem, comments[$1])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("433"); $$ = []node.Node{arrayItem}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("434"); $$ = $1 }
|
2018-02-02 13:01:03 +00:00
|
|
|
| expr_without_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("435"); $$ = $1 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("436"); $$ = $2 }
|
2018-02-02 13:01:03 +00:00
|
|
|
| '(' yield_expr ')'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("437"); $$ = $2 }
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("438"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
w_variable:
|
2018-01-29 19:12:12 +00:00
|
|
|
variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("439"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
rw_variable:
|
2018-01-29 19:12:12 +00:00
|
|
|
variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("440"); $$ = $1 }
|
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-12 13:08:08 +00:00
|
|
|
fmt.Println("441"); $$ = $1
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
if $4 != nil {
|
|
|
|
$4[0].(*expr.MethodCall).Method = $3[len($3)-1].(*expr.PropertyFetch).Property
|
|
|
|
$3 = append($3[:len($3)-1], $4...)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, n := range($3) {
|
|
|
|
switch nn := n.(type) {
|
|
|
|
case *expr.ArrayDimFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("442"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
case *expr.PropertyFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("443"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
case *expr.MethodCall:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("444"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, n := range($5) {
|
|
|
|
switch nn := n.(type) {
|
|
|
|
case *expr.ArrayDimFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("445"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
case *expr.PropertyFetch:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("446"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
|
|
|
|
case *expr.MethodCall:
|
|
|
|
nn.Variable = $$
|
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
|
|
|
|
comments.AddComments(nn, comments[$1])
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("447"); $$ = nn
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 19:12:12 +00:00
|
|
|
| base_variable_with_function_calls
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("448"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
variable_properties:
|
2018-02-04 16:51:44 +00:00
|
|
|
variable_properties variable_property
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("449"); $$ = append($1, $2...) }
|
2018-02-04 16:51:44 +00:00
|
|
|
| /* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("450"); $$ = []node.Node{} }
|
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
|
|
|
|
{
|
|
|
|
if $3 != nil {
|
|
|
|
$3[0].(*expr.MethodCall).Method = $2[len($2)-1].(*expr.PropertyFetch).Property
|
|
|
|
$2 = append($2[:len($2)-1], $3...)
|
|
|
|
}
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("451"); $$ = $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 ']'
|
|
|
|
{
|
|
|
|
fetch := expr.NewArrayDimFetch(nil, $3)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewNodePosition($3))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("452"); $$ = append($1, fetch)
|
2018-02-04 16:51:44 +00:00
|
|
|
}
|
|
|
|
| method '[' dim_offset ']'
|
|
|
|
{
|
|
|
|
fetch := expr.NewArrayDimFetch(nil, $3)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewNodePosition($3))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("453"); $$ = []node.Node{$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
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("454"); $$ = expr.NewMethodCall(nil, nil, $1.nodes)
|
2018-02-04 16:51:44 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($1.nodes, $1.endToken))
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
method_or_not:
|
2018-02-04 16:51:44 +00:00
|
|
|
method
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("455"); $$ = []node.Node{$1} }
|
2018-02-04 16:51:44 +00:00
|
|
|
| array_method_dereference
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("456"); $$ = $1 }
|
2018-02-04 16:51:44 +00:00
|
|
|
| /* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("457"); $$ = nil }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
variable_without_objects:
|
2018-02-01 18:40:04 +00:00
|
|
|
reference_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("458"); $$ = $1 }
|
2018-02-01 18:40:04 +00:00
|
|
|
| simple_indirect_reference reference_variable
|
|
|
|
{
|
|
|
|
$1.last.SetVarName($2)
|
|
|
|
|
|
|
|
for _, n := range($1.all) {
|
|
|
|
positions[n] = positionBuilder.NewNodesPosition(n, $2)
|
|
|
|
}
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("459"); $$ = $1.all[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
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("460"); $$ = expr.NewStaticPropertyFetch($1, $3)
|
2018-02-01 18:40:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("461"); $$ = expr.NewStaticPropertyFetch($1, $3)
|
2018-02-01 18:40:04 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-01-27 10:33:13 +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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("462"); $$ = $1 }
|
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
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("463"); $$ = expr.NewArrayDimFetch($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-02-01 18:40:04 +00:00
|
|
|
| function_call '[' dim_offset ']'
|
2018-02-04 18:55:45 +00:00
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("464"); $$ = expr.NewArrayDimFetch($1, $3)
|
2018-02-04 18:55:45 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
base_variable_with_function_calls:
|
2018-02-12 13:08:08 +00:00
|
|
|
base_variable { fmt.Println("465"); $$ = $1 }
|
|
|
|
| array_function_dereference { fmt.Println("466"); $$ = $1 }
|
|
|
|
| function_call { fmt.Println("467"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
base_variable:
|
2018-02-01 18:40:04 +00:00
|
|
|
reference_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("468"); $$ = $1 }
|
2018-01-29 19:12:12 +00:00
|
|
|
| simple_indirect_reference reference_variable
|
|
|
|
{
|
|
|
|
$1.last.SetVarName($2)
|
|
|
|
|
|
|
|
for _, n := range($1.all) {
|
|
|
|
positions[n] = positionBuilder.NewNodesPosition(n, $2)
|
|
|
|
}
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("469"); $$ = $1.all[0]
|
2018-01-29 19:12:12 +00:00
|
|
|
}
|
2018-02-01 18:40:04 +00:00
|
|
|
| static_member
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("470"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
reference_variable:
|
2018-01-29 19:12:12 +00:00
|
|
|
reference_variable '[' dim_offset ']'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("471"); $$ = expr.NewArrayDimFetch($1, $3)
|
2018-01-29 19:12:12 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| reference_variable '{' expr '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("472"); $$ = expr.NewArrayDimFetch($1, $3)
|
2018-01-29 19:12:12 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-02-01 18:40:04 +00:00
|
|
|
| compound_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("473"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
compound_variable:
|
2018-01-29 14:37:09 +00:00
|
|
|
T_VARIABLE
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("474"); $$ = expr.NewVariable(name)
|
2018-01-29 14:37:09 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '$' '{' expr '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("475"); $$ = expr.NewVariable($3)
|
2018-01-31 10:29:38 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("476"); $$ = nil }
|
2018-02-04 18:55:45 +00:00
|
|
|
| expr
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("477"); $$ = $1 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
object_property:
|
2018-02-01 14:07:18 +00:00
|
|
|
object_dim_list
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("478"); $$ = $1 }
|
2018-02-01 14:07:18 +00:00
|
|
|
| variable_without_objects
|
|
|
|
{
|
2018-02-04 16:51:44 +00:00
|
|
|
fetch := expr.NewPropertyFetch(nil, $1)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewNodePosition($1))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("479"); $$ = []node.Node{fetch}
|
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 ']'
|
|
|
|
{
|
2018-02-04 16:51:44 +00:00
|
|
|
fetch := expr.NewArrayDimFetch(nil, $3)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewNodePosition($3))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("480"); $$ = append($1, fetch)
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
|
|
|
| object_dim_list '{' expr '}'
|
|
|
|
{
|
2018-02-04 16:51:44 +00:00
|
|
|
fetch := expr.NewArrayDimFetch(nil, $3)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewNodePosition($3))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("481"); $$ = append($1, fetch)
|
2018-02-01 14:07:18 +00:00
|
|
|
}
|
|
|
|
| variable_name
|
|
|
|
{
|
2018-02-04 16:51:44 +00:00
|
|
|
fetch := expr.NewPropertyFetch(nil, $1)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewNodePosition($1))
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("482"); $$ = []node.Node{fetch}
|
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
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("483"); $$ = node.NewIdentifier($1.Value)
|
2018-02-01 10:35:43 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| '{' expr '}'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("484"); $$ = $2 }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
simple_indirect_reference:
|
2018-01-29 19:12:12 +00:00
|
|
|
'$'
|
|
|
|
{
|
|
|
|
n := expr.NewVariable(nil)
|
|
|
|
positions.AddPosition(n, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments(n, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("485"); $$ = simpleIndirectReference{[]*expr.Variable{n}, n}
|
2018-01-29 19:12:12 +00:00
|
|
|
}
|
|
|
|
| simple_indirect_reference '$'
|
|
|
|
{
|
|
|
|
n := expr.NewVariable(nil)
|
|
|
|
positions.AddPosition(n, positionBuilder.NewTokenPosition($2))
|
|
|
|
comments.AddComments(n, $2.Comments())
|
|
|
|
|
|
|
|
$1.last.SetVarName(n)
|
|
|
|
|
|
|
|
$1.all = append($1.all, n)
|
|
|
|
$1.last = n
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("486"); $$ = $1
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("487"); $$ = append($1, $3) }
|
2018-01-29 14:42:52 +00:00
|
|
|
| assignment_list_element
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("488"); $$ = []node.Node{$1} }
|
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
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("489"); $$ = expr.NewArrayItem(nil, $1, false)
|
2018-02-08 22:02:12 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition($1))
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-02-01 10:35:43 +00:00
|
|
|
| T_LIST '(' assignment_list ')'
|
|
|
|
{
|
2018-02-10 11:25:08 +00:00
|
|
|
item := expr.NewList($3)
|
|
|
|
positions.AddPosition(item, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments(item, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("490"); $$ = expr.NewArrayItem(nil, item, false)
|
2018-02-10 11:25:08 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodePosition(item))
|
|
|
|
comments.AddComments($$, comments[item])
|
2018-02-01 10:35:43 +00:00
|
|
|
}
|
|
|
|
| /* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("491"); $$ = nil }
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
array_pair_list:
|
2018-02-01 10:04:17 +00:00
|
|
|
/* empty */
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("492"); $$ = []node.Node{} }
|
2018-02-01 10:04:17 +00:00
|
|
|
| non_empty_array_pair_list possible_comma
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("493"); $$ = $1 }
|
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
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem($3, $5, false)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodesPosition($3, $5))
|
|
|
|
comments.AddComments(arrayItem, comments[$3])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("494"); $$ = append($1, arrayItem)
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| non_empty_array_pair_list ',' expr
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem(nil, $3, false)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodePosition($3))
|
|
|
|
comments.AddComments(arrayItem, comments[$3])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("495"); $$ = append($1, arrayItem)
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| expr T_DOUBLE_ARROW expr
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem($1, $3, false)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodesPosition($1, $3))
|
|
|
|
comments.AddComments(arrayItem, comments[$1])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("496"); $$ = []node.Node{arrayItem}
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| expr
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem(nil, $1, false)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodePosition($1))
|
|
|
|
comments.AddComments(arrayItem, comments[$1])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("497"); $$ = []node.Node{arrayItem}
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| non_empty_array_pair_list ',' expr T_DOUBLE_ARROW '&' w_variable
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem($3, $6, true)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodesPosition($3, $6))
|
|
|
|
comments.AddComments(arrayItem, comments[$3])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("498"); $$ = append($1, arrayItem)
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| non_empty_array_pair_list ',' '&' w_variable
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem(nil, $4, true)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewTokenNodePosition($3, $4))
|
|
|
|
comments.AddComments(arrayItem, $3.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("499"); $$ = append($1, arrayItem)
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| expr T_DOUBLE_ARROW '&' w_variable
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem($1, $4, true)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewNodesPosition($1, $4))
|
|
|
|
comments.AddComments(arrayItem, comments[$1])
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("500"); $$ = []node.Node{arrayItem}
|
2018-02-01 10:04:17 +00:00
|
|
|
}
|
|
|
|
| '&' w_variable
|
|
|
|
{
|
|
|
|
arrayItem := expr.NewArrayItem(nil, $2, true)
|
|
|
|
positions.AddPosition(arrayItem, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments(arrayItem, $1.Comments())
|
|
|
|
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("501"); $$ = []node.Node{arrayItem}
|
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-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("502"); $$ = append($1, $2) }
|
2018-01-31 10:55:50 +00:00
|
|
|
| encaps_list T_ENCAPSED_AND_WHITESPACE
|
|
|
|
{
|
|
|
|
encapsed := scalar.NewEncapsedStringPart($2.Value)
|
|
|
|
positions.AddPosition(encapsed, positionBuilder.NewTokenPosition($2))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("503"); $$ = append($1, encapsed)
|
2018-01-31 10:55:50 +00:00
|
|
|
comments.AddComments(encapsed, $2.Comments())
|
|
|
|
}
|
|
|
|
| encaps_var
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("504"); $$ = []node.Node{$1} }
|
2018-01-31 10:55:50 +00:00
|
|
|
| T_ENCAPSED_AND_WHITESPACE encaps_var
|
|
|
|
{
|
|
|
|
encapsed := scalar.NewEncapsedStringPart($1.Value)
|
|
|
|
positions.AddPosition(encapsed, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("505"); $$ = []node.Node{encapsed, $2}
|
2018-01-31 10:55:50 +00:00
|
|
|
comments.AddComments(encapsed, $1.Comments())
|
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
2018-01-31 10:55:50 +00:00
|
|
|
encaps_var:
|
|
|
|
T_VARIABLE
|
|
|
|
{
|
|
|
|
name := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(name, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("506"); $$ = expr.NewVariable(name)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2018-01-31 10:55:50 +00:00
|
|
|
comments.AddComments(name, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_VARIABLE '[' encaps_var_offset ']'
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("507"); $$ = expr.NewArrayDimFetch(variable, $3)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
2018-01-27 10:33:13 +00:00
|
|
|
|
2018-01-31 10:55:50 +00:00
|
|
|
comments.AddComments(identifier, $1.Comments())
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_VARIABLE T_OBJECT_OPERATOR T_STRING
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($1))
|
|
|
|
fetch := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(fetch, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("508"); $$ = expr.NewPropertyFetch(variable, fetch)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(identifier, $1.Comments())
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
comments.AddComments(fetch, $3.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_DOLLAR_OPEN_CURLY_BRACES expr '}'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("509"); $$ = $2
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '[' expr ']' '}'
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($2.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($2))
|
|
|
|
variable := expr.NewVariable(identifier)
|
|
|
|
positions.AddPosition(variable, positionBuilder.NewTokenPosition($2))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("510"); $$ = expr.NewArrayDimFetch(variable, $4)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $6))
|
2018-01-27 10:33:13 +00:00
|
|
|
|
|
|
|
|
2018-01-31 10:55:50 +00:00
|
|
|
comments.AddComments(identifier, $2.Comments())
|
|
|
|
comments.AddComments(variable, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_CURLY_OPEN variable '}'
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("511"); $$ = $2; }
|
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
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("512"); $$ = scalar.NewString($1.Value)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_NUM_STRING
|
|
|
|
{
|
|
|
|
// TODO: add option to handle 64 bit integer
|
|
|
|
if _, err := strconv.Atoi($1.Value); err == nil {
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("513"); $$ = scalar.NewLnumber($1.Value)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
} else {
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("514"); $$ = scalar.NewString($1.Value)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
}
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_VARIABLE
|
|
|
|
{
|
|
|
|
identifier := node.NewIdentifier($1.Value)
|
|
|
|
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("515"); $$ = expr.NewVariable(identifier)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
|
|
|
|
|
|
|
|
comments.AddComments(identifier, $1.Comments())
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
internal_functions_in_yacc:
|
2018-02-01 10:04:17 +00:00
|
|
|
T_ISSET '(' isset_variables ')'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("516"); $$ = expr.NewIsset($3)
|
2018-02-01 10:04:17 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_EMPTY '(' variable ')'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("517"); $$ = expr.NewEmpty($3)
|
2018-02-01 10:04:17 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_EMPTY '(' expr_without_variable ')'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("518"); $$ = expr.NewEmpty($3)
|
2018-02-01 10:04:17 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_INCLUDE expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("519"); $$ = expr.NewInclude($2)
|
2018-02-01 10:04:17 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_INCLUDE_ONCE expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("520"); $$ = expr.NewIncludeOnce($2)
|
2018-02-01 10:04:17 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_EVAL '(' expr ')'
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("521"); $$ = expr.NewEval($3)
|
2018-02-01 10:04:17 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_REQUIRE expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("522"); $$ = expr.NewRequire($2)
|
2018-02-01 10:04:17 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
|
|
|
| T_REQUIRE_ONCE expr
|
|
|
|
{
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("523"); $$ = expr.NewRequireOnce($2)
|
2018-02-01 10:04:17 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
|
|
|
|
comments.AddComments($$, $1.Comments())
|
|
|
|
}
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
isset_variables:
|
2018-02-01 10:04:17 +00:00
|
|
|
isset_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("524"); $$ = []node.Node{$1} }
|
2018-02-01 10:04:17 +00:00
|
|
|
| isset_variables ',' isset_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("525"); $$ = append($1, $3) }
|
2017-12-01 07:15:46 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
isset_variable:
|
2018-02-04 18:55:45 +00:00
|
|
|
variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("526"); $$ = $1 }
|
2018-02-04 18:55:45 +00:00
|
|
|
| expr_without_variable
|
2018-02-12 13:08:08 +00:00
|
|
|
{ fmt.Println("527"); $$ = $1 }
|
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
|
|
|
|
{
|
|
|
|
target := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(target, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("528"); $$ = expr.NewClassConstFetch($1, target)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(target, $3.Comments())
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
|
|
|
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING
|
|
|
|
{
|
|
|
|
target := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(target, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("529"); $$ = expr.NewClassConstFetch($1, target)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(target, $3.Comments())
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
target := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(target, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("530"); $$ = expr.NewClassConstFetch($1, target)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(target, $3.Comments())
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
target := node.NewIdentifier($3.Value)
|
|
|
|
positions.AddPosition(target, positionBuilder.NewTokenPosition($3))
|
2018-02-12 13:08:08 +00:00
|
|
|
fmt.Println("531"); $$ = expr.NewClassConstFetch($1, target)
|
2018-01-31 10:55:50 +00:00
|
|
|
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $3))
|
|
|
|
|
|
|
|
comments.AddComments(target, $3.Comments())
|
|
|
|
comments.AddComments($$, comments[$1])
|
|
|
|
}
|
2018-01-27 10:33:13 +00:00
|
|
|
;
|
2017-11-23 15:33:47 +00:00
|
|
|
|
2017-12-01 13:29:23 +00:00
|
|
|
%%
|