php-parser/php5/php5.y

3777 lines
139 KiB
Plaintext
Raw Normal View History

2017-11-23 15:33:47 +00:00
%{
2018-01-26 13:24:56 +00:00
package php5
2017-11-23 15:33:47 +00:00
import (
2018-01-29 19:12:12 +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-01-31 10:55:50 +00:00
%type <node> inner_statement 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-01-29 14:11:45 +00:00
top_statement_list top_statement { $$ = append($1, $2) }
| /* empty */ { $$ = []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))
$$ = []node.Node{namePart}
comments.AddComments(namePart, $1.Comments())
}
| namespace_name T_NS_SEPARATOR T_STRING
{
namePart := name.NewNamePart($3.Value)
positions.AddPosition(namePart, positionBuilder.NewTokenPosition($3))
$$ = append($1, namePart)
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
{ $$ = $1 }
| function_declaration_statement
{ $$ = $1 }
| class_declaration_statement
{ $$ = $1 }
| T_HALT_COMPILER '(' ')' ';'
{
$$ = stmt.NewHaltCompiler()
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))
$$ = stmt.NewNamespace(name, nil)
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))
$$ = stmt.NewNamespace(name, $4)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $5))
comments.AddComments(name, ListGetFirstNodeComments($2))
comments.AddComments($$, $1.Comments())
}
| T_NAMESPACE '{' top_statement_list '}'
{
$$ = stmt.NewNamespace(nil, $3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
| T_USE use_declarations ';'
{
$$ = stmt.NewUseList(nil, $2)
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())
$$ = stmt.NewUseList(useType, $3)
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())
$$ = stmt.NewUseList(useType, $3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
2018-02-03 10:09:02 +00:00
| constant_declaration ';'
{ $$ = $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
{ $$ = append($1, $3) }
| use_declaration
{ $$ = []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))
$$ = stmt.NewUse(nil, name, nil)
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))
$$ = stmt.NewUse(nil, name, alias)
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))
$$ = stmt.NewUse(nil, name, nil)
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))
$$ = stmt.NewUse(nil, name, alias)
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-03 10:09:02 +00:00
{ $$ = append($1, $3) }
2018-01-29 14:11:45 +00:00
| use_function_declaration
2018-02-03 10:09:02 +00:00
{ $$ = []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))
$$ = stmt.NewUse(nil, name, nil)
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))
$$ = stmt.NewUse(nil, name, alias)
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))
$$ = stmt.NewUse(nil, name, nil)
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))
$$ = stmt.NewUse(nil, name, alias)
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-03 10:09:02 +00:00
{ $$ = append($1, $3) }
2018-01-29 14:11:45 +00:00
| use_const_declaration
2018-02-03 10:09:02 +00:00
{ $$ = []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))
$$ = stmt.NewUse(nil, name, nil)
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))
$$ = stmt.NewUse(nil, name, alias)
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))
$$ = stmt.NewUse(nil, name, nil)
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))
$$ = stmt.NewUse(nil, name, alias)
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)
$$ = $1
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}
$$ = stmt.NewConstList(constList)
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
{ $$ = append($1, $2) }
| /* empty */
{ $$ = []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
{ $$ = $1 }
| function_declaration_statement
{ $$ = $1 }
| class_declaration_statement
{ $$ = $1 }
| T_HALT_COMPILER '(' ')' ';'
{
$$ = stmt.NewHaltCompiler()
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
2018-01-27 10:33:13 +00:00
statement:
2018-02-03 10:09:02 +00:00
unticked_statement
{ $$ = $1 }
| T_STRING ':'
{
label := node.NewIdentifier($1.Value)
positions.AddPosition(label, positionBuilder.NewTokenPosition($1))
$$ = stmt.NewLabel(label)
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 '}'
{
$$ = stmt.NewStmtList($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_IF parenthesis_expr statement elseif_list else_single
{
$$ = stmt.NewIf($2, $3, $4, $5)
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-08 10:48:38 +00:00
$$ = 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-06 17:11:47 +00:00
$$ = 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 ';'
{
$$ = stmt.NewDo($2, $4)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $5))
comments.AddComments($$, $1.Comments())
}
| T_FOR '(' for_expr ';' for_expr ';' for_expr ')' for_statement
{
$$ = stmt.NewFor($3, $5, $7, $9)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $9))
comments.AddComments($$, $1.Comments())
}
| T_SWITCH parenthesis_expr switch_case_list
{
2018-02-06 17:11:47 +00:00
$$ = 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 ';'
{
$$ = stmt.NewBreak(nil)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_BREAK expr ';'
{
$$ = stmt.NewBreak($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_CONTINUE ';'
{
$$ = stmt.NewContinue(nil)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_CONTINUE expr ';'
{
$$ = stmt.NewContinue($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_RETURN ';'
{
$$ = stmt.NewReturn(nil)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_RETURN expr_without_variable ';'
{
$$ = stmt.NewReturn($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_RETURN variable ';'
{
$$ = stmt.NewReturn($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| yield_expr ';'
{ $$ = $1 }
| T_GLOBAL global_var_list ';'
{
$$ = stmt.NewGlobal($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_STATIC static_var_list ';'
{
$$ = stmt.NewStatic($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_ECHO echo_expr_list ';'
{
$$ = stmt.NewEcho($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_INLINE_HTML
{
$$ = stmt.NewInlineHtml($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| expr ';'
2018-02-08 10:48:38 +00:00
{
$$ = stmt.NewExpression($1)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $2))
comments.AddComments($$, comments[$1])
}
2018-02-03 12:29:23 +00:00
| T_UNSET '(' unset_variables ')' ';'
{
$$ = stmt.NewUnset($3)
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 {
$$ = stmt.NewForeach($3, nil, $5.node, $8, $5.byRef)
} else {
$$ = stmt.NewForeach($3, $5.node, $6.node, $8, $6.byRef)
}
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 {
$$ = stmt.NewForeach($3, nil, $5.node, $8, $5.byRef)
} else {
$$ = stmt.NewForeach($3, $5.node, $6.node, $8, $6.byRef)
}
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $8))
comments.AddComments($$, $1.Comments())
}
2018-02-03 13:24:00 +00:00
| T_DECLARE '(' declare_list ')' declare_statement
{
$$ = stmt.NewDeclare($3, $5)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $5))
comments.AddComments($$, $1.Comments())
}
| ';'
{
$$ = stmt.NewNop()
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_TRY '{' inner_statement_list '}' catch_statement finally_statement
{
$$ = stmt.NewTry($3, $5, $6)
if $6 == nil {
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $5))
} else {
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $6))
}
comments.AddComments($$, $1.Comments())
}
| T_THROW expr ';'
{
$$ = stmt.NewThrow($2)
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))
$$ = stmt.NewGoto(label)
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 */
{ $$ = []node.Node{} }
| 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())
$$ = append([]node.Node{catch}, $9...)
}
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 */
{ $$ = nil }
| T_FINALLY '{' inner_statement_list '}'
{
$$ = stmt.NewFinally($3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
;
2018-01-27 10:33:13 +00:00
additional_catches:
2018-02-03 13:24:00 +00:00
non_empty_additional_catches
{ $$ = $1 }
| /* empty */
{ $$ = []node.Node{} }
2018-01-27 10:33:13 +00:00
;
2018-01-27 10:33:13 +00:00
non_empty_additional_catches:
2018-02-03 13:24:00 +00:00
additional_catch
{ $$ = []node.Node{$1} }
| non_empty_additional_catches additional_catch
{ $$ = 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())
$$ = stmt.NewCatch([]node.Node{$3}, variable, $7)
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-03 12:29:23 +00:00
{ $$ = []node.Node{$1} }
2018-01-29 14:42:52 +00:00
| unset_variables ',' unset_variable
2018-02-03 12:29:23 +00:00
{ $$ = 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
{ $$ = $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
{ $$ = $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
{ $$ = $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 */
{ $$ = boolWithToken{false, nil} }
| '&'
{ $$ = 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 */
{ $$ = boolWithToken{false, nil} }
| T_ELLIPSIS
{ $$ = 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())
$$ = stmt.NewFunction(name, $2.value, $5, nil, $8, "")
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
}
$$ = $1
}
| 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())
$$ = stmt.NewInterface(name, $3, $5, "")
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
{
$$ = stmt.NewClass(nil, nil, nil, nil, nil, nil, "")
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())
$$ = stmt.NewClass(nil, []node.Node{classModifier}, nil, nil, nil, nil, "")
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_TRAIT
{
$$ = stmt.NewTrait(nil, nil, "")
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())
$$ = stmt.NewClass(nil, []node.Node{classModifier}, nil, nil, nil, nil, "")
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 */
{ $$ = nil }
| T_EXTENDS fully_qualified_class_name
{ $$ = $2 }
2018-01-27 10:33:13 +00:00
;
interface_entry:
2018-02-03 17:33:22 +00:00
T_INTERFACE
{ $$ = $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-03 17:33:22 +00:00
{ $$ = nil }
2018-01-29 14:42:52 +00:00
| T_EXTENDS interface_list
2018-02-03 17:33:22 +00:00
{ $$ = $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-03 17:33:22 +00:00
{ $$ = nil }
2018-01-29 14:42:52 +00:00
| T_IMPLEMENTS interface_list
2018-02-03 17:33:22 +00:00
{ $$ = $2 }
2018-01-27 10:33:13 +00:00
;
interface_list:
2018-02-03 17:33:22 +00:00
fully_qualified_class_name
{ $$ = []node.Node{$1} }
| interface_list ',' fully_qualified_class_name
{ $$ = append($1, $3) }
2018-01-27 10:33:13 +00:00
;
foreach_optional_arg:
2018-02-03 12:41:34 +00:00
/* empty */
{ $$ = foreachVariable{nil, false} }
| T_DOUBLE_ARROW foreach_variable
{ $$ = $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
{ $$ = foreachVariable{$1, false} }
| '&' variable
{ $$ = foreachVariable{$2, true} }
| T_LIST '(' assignment_list ')'
{
list := expr.NewList($3)
positions.AddPosition(list, positionBuilder.NewTokensPosition($1, $4))
$$ = foreachVariable{list, false}
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-03 12:29:23 +00:00
{ $$ = $1; }
| ':' inner_statement_list T_ENDFOR ';'
{
$$ = stmt.NewStmtList($2)
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-03 12:41:34 +00:00
{ $$ = $1; }
2018-01-29 14:42:52 +00:00
| ':' inner_statement_list T_ENDFOREACH ';'
2018-02-03 12:41:34 +00:00
{
$$ = stmt.NewStmtList($2)
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-03 13:24:00 +00:00
{ $$ = $1; }
2018-01-29 14:42:52 +00:00
| ':' inner_statement_list T_ENDDECLARE ';'
2018-02-03 13:24:00 +00:00
{
$$ = stmt.NewStmtList($2)
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())
$$ = []node.Node{constant}
}
| 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())
$$ = append($1, constant)
}
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 '}'
{ $$ = &nodesWithEndToken{$2, $3} }
| '{' ';' case_list '}'
{ $$ = &nodesWithEndToken{$3, $4} }
| ':' case_list T_ENDSWITCH ';'
{ $$ = &nodesWithEndToken{$2, $4} }
| ':' ';' case_list T_ENDSWITCH ';'
{ $$ = &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 */
{ $$ = []node.Node{} }
| case_list T_CASE expr case_separator inner_statement_list
{
_case := stmt.NewCase($3, $5)
positions.AddPosition(_case, positionBuilder.NewTokenNodeListPosition($2, $5))
$$ = append($1, _case)
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))
$$ = append($1, _default)
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-03 12:29:23 +00:00
{ $$ = $1 }
2018-01-29 14:42:52 +00:00
| ':' inner_statement_list T_ENDWHILE ';'
2018-02-03 12:29:23 +00:00
{
$$ = stmt.NewStmtList($2)
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-08 21:31:38 +00:00
{ $$ = 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())
$$ = append($1, _elseIf)
}
2018-01-27 10:33:13 +00:00
;
new_elseif_list:
2018-01-29 14:11:45 +00:00
/* empty */
2018-02-08 10:48:38 +00:00
{ $$ = 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())
$$ = append($1, _elseIf)
}
2018-01-27 10:33:13 +00:00
;
else_single:
2018-01-29 14:11:45 +00:00
/* empty */
2018-02-03 12:29:23 +00:00
{ $$ = nil }
2018-01-29 14:42:52 +00:00
| T_ELSE statement
2018-02-03 12:29:23 +00:00
{
$$ = stmt.NewElse($2)
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-03 12:29:23 +00:00
{ $$ = 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))
$$ = stmt.NewAltElse(stmts)
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-03 17:33:22 +00:00
{ $$ = $1; }
2018-01-29 14:42:52 +00:00
| /* empty */
2018-02-03 17:33:22 +00:00
{ $$ = nil }
2017-12-01 07:15:46 +00:00
;
non_empty_parameter_list:
2018-01-29 14:11:45 +00:00
parameter
2018-02-03 17:33:22 +00:00
{ $$ = []node.Node{$1} }
2018-01-29 14:42:52 +00:00
| non_empty_parameter_list ',' parameter
2018-02-03 17:33:22 +00:00
{ $$ = 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())
$$ = node.NewParameter($1, variable, nil, $2.value, $3.value)
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())
$$ = node.NewParameter($1, variable, $6, $2.value, $3.value)
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 */
{ $$ = nil }
| T_ARRAY
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_CALLABLE
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| fully_qualified_class_name
{ $$ = $1 }
2018-01-27 10:33:13 +00:00
;
function_call_parameter_list:
2018-02-01 14:07:18 +00:00
'(' ')'
{ $$ = &nodesWithEndToken{[]node.Node{}, $2} }
2018-02-03 18:13:11 +00:00
| '(' non_empty_function_call_parameter_list ')'
{ $$ = &nodesWithEndToken{$2, $3} }
| '(' yield_expr ')'
{
arg := node.NewArgument($2, false, false)
positions.AddPosition(arg, positionBuilder.NewNodePosition($2))
comments.AddComments(arg, comments[$2])
$$ = &nodesWithEndToken{[]node.Node{arg}, $3}
}
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-03 18:13:11 +00:00
{ $$ = []node.Node{$1} }
2018-01-29 14:42:52 +00:00
| non_empty_function_call_parameter_list ',' function_call_parameter
2018-02-03 18:13:11 +00:00
{ $$ = 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
{
$$ = node.NewArgument($1, false, false)
positions.AddPosition($$, positionBuilder.NewNodePosition($1))
comments.AddComments($$, comments[$1])
}
| variable
{
$$ = node.NewArgument($1, false, false)
positions.AddPosition($$, positionBuilder.NewNodePosition($1))
comments.AddComments($$, comments[$1])
}
| '&' w_variable
{
$$ = node.NewArgument($2, false, true)
positions.AddPosition($$, positionBuilder.NewNodePosition($2))
comments.AddComments($$, $1.Comments())
}
| T_ELLIPSIS expr
{
$$ = node.NewArgument($2, true, false)
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
{ $$ = append($1, $3) }
| global_var
{ $$ = []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))
$$ = expr.NewVariable(name)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments(name, $1.Comments())
comments.AddComments($$, $1.Comments())
}
| '$' r_variable
{
$$ = expr.NewVariable($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| '$' '{' expr '}'
{
$$ = expr.NewVariable($3)
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))
$$ = append($1, staticVar)
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))
$$ = append($1, staticVar)
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))
$$ = []node.Node{staticVar}
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))
$$ = []node.Node{staticVar}
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-03 17:33:22 +00:00
{ $$ = append($1, $2) }
2018-01-29 14:42:52 +00:00
| /* empty */
2018-02-03 17:33:22 +00:00
{ $$ = []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 ';'
{
$$ = stmt.NewPropertyList($1, $2)
positions.AddPosition($$, positionBuilder.NewNodeListTokenPosition($1, $3))
comments.AddComments($$, ListGetFirstNodeComments($1))
}
2018-01-29 14:42:52 +00:00
| class_constant_declaration ';'
2018-02-03 17:33:22 +00:00
{ $$ = $1 }
2018-01-29 14:42:52 +00:00
| trait_use_statement
2018-02-03 17:33:22 +00:00
{ $$ = $1 }
| 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())
$$ = stmt.NewClassMethod(name, $1, $3.value, $6, nil, $8.nodes, "")
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
{
$$ = stmt.NewTraitUse($2, $3.nodes)
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
{ $$ = []node.Node{$1} }
| trait_list ',' fully_qualified_class_name
{ $$ = append($1, $3) }
2017-11-29 21:43:39 +00:00
;
trait_adaptations:
2018-01-29 14:11:45 +00:00
';'
2018-02-03 22:09:37 +00:00
{ $$ = &nodesWithEndToken{nil, $1} }
2018-01-29 14:42:52 +00:00
| '{' trait_adaptation_list '}'
2018-02-03 22:09:37 +00:00
{ $$ = &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-03 22:09:37 +00:00
{ $$ = nil }
2018-01-29 14:42:52 +00:00
| non_empty_trait_adaptation_list
2018-02-03 22:09:37 +00:00
{ $$ = $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-03 22:09:37 +00:00
{ $$ = []node.Node{$1} }
2018-01-29 14:42:52 +00:00
| non_empty_trait_adaptation_list trait_adaptation_statement
2018-02-03 22:09:37 +00:00
{ $$ = 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-03 22:09:37 +00:00
{ $$ = $1 }
2018-01-29 14:42:52 +00:00
| trait_alias ';'
2018-02-03 22:09:37 +00:00
{ $$ = $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-09 12:48:10 +00:00
$$ = 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
{ $$ = []node.Node{$1} }
| trait_reference_list ',' fully_qualified_class_name
{ $$ = 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())
$$ = stmt.NewTraitMethodRef(nil, name)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| trait_method_reference_fully_qualified
{ $$ = $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())
$$ = stmt.NewTraitMethodRef($1, target)
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))
$$ = stmt.NewTraitUseAlias($1, $3, alias)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
comments.AddComments(alias, $4.Comments())
comments.AddComments($$, comments[$1])
}
| trait_method_reference T_AS member_modifier
{
$$ = stmt.NewTraitUseAlias($1, $3, nil)
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 */
{ $$ = nil }
| member_modifier
{ $$ = $1 }
2017-11-29 22:07:15 +00:00
;
method_body:
2018-02-03 22:37:43 +00:00
';' /* abstract method */
{ $$ = &nodesWithEndToken{nil, $1} }
| '{' inner_statement_list '}'
{ $$ = &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
{ $$ = $1; }
| T_VAR
{
modifier := node.NewIdentifier($1.Value)
positions.AddPosition(modifier, positionBuilder.NewTokenPosition($1))
comments.AddComments(modifier, $1.Comments())
$$ = []node.Node{modifier}
}
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 */
{ $$ = nil }
| non_empty_member_modifiers
{ $$ = $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
{ $$ = []node.Node{$1} }
| non_empty_member_modifiers member_modifier
{ $$ = 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
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_PROTECTED
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_PRIVATE
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_STATIC
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_ABSTRACT
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_FINAL
{
$$ = node.NewIdentifier($1.Value)
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())
$$ = append($1, property)
}
| 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())
$$ = append($1, property)
}
| 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())
$$ = []node.Node{property}
}
| 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())
$$ = []node.Node{property}
}
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))
$$ = $1
}
| 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())
$$ = stmt.NewClassConstList(nil, []node.Node{constant})
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $4))
comments.AddComments($$, $1.Comments())
}
;
2017-12-01 07:15:46 +00:00
echo_expr_list:
2018-02-03 12:29:23 +00:00
echo_expr_list ',' expr
{ $$ = append($1, $3) }
| expr
{ $$ = []node.Node{$1} }
2018-01-27 10:33:13 +00:00
;
for_expr:
2018-02-03 12:29:23 +00:00
/* empty */
{ $$ = nil }
| non_empty_for_expr
{ $$ = $1 }
;
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
{ $$ = append($1, $3) }
| expr
{ $$ = []node.Node{$1} }
;
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
{ $$ = append($1, $2...) }
| variable_property
{ $$ = $1 }
;
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))
$$ = append($1, fetch)
}
| '[' dim_offset ']'
{
fetch := expr.NewArrayDimFetch(nil, $2)
positions.AddPosition(fetch, positionBuilder.NewNodePosition($2))
$$ = []node.Node{fetch}
}
;
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
{ $$ = append($1, $2...) }
| chaining_dereference
{ $$ = $1 }
| chaining_method_or_property
{ $$ = $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 */
{ $$ = nil }
| chaining_instance_call
{ $$ = $1 }
;
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 {
$$ = expr.NewNew($2, $3.nodes)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3.endToken))
} else {
$$ = expr.NewNew($2, nil)
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))
$$ = assign_op.NewAssign(list, $6)
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
{
$$ = assign_op.NewAssign($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable '=' '&' variable
{
$$ = assign_op.NewAssignRef($1, $4)
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 {
_new := expr.NewNew($5, $6.nodes)
positions.AddPosition(_new, positionBuilder.NewTokensPosition($4, $6.endToken))
}
comments.AddComments(_new, comments[$1])
$$ = assign_op.NewAssignRef($1, _new)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, _new))
comments.AddComments($$, comments[$1])
}
| T_CLONE expr
{
$$ = expr.NewClone($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| variable T_PLUS_EQUAL expr
{
$$ = assign_op.NewPlus($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_MINUS_EQUAL expr
{
$$ = assign_op.NewMinus($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_MUL_EQUAL expr
{
$$ = assign_op.NewMul($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_POW_EQUAL expr
{
$$ = assign_op.NewPow($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_DIV_EQUAL expr
{
$$ = assign_op.NewDiv($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_CONCAT_EQUAL expr
{
$$ = assign_op.NewConcat($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_MOD_EQUAL expr
{
$$ = assign_op.NewMod($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_AND_EQUAL expr
{
$$ = assign_op.NewBitwiseAnd($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_OR_EQUAL expr
{
$$ = assign_op.NewBitwiseOr($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_XOR_EQUAL expr
{
$$ = assign_op.NewBitwiseXor($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_SL_EQUAL expr
{
$$ = assign_op.NewShiftLeft($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable T_SR_EQUAL expr
{
$$ = assign_op.NewShiftRight($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| rw_variable T_INC
{
$$ = expr.NewPostInc($1)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $2))
comments.AddComments($$, comments[$1])
}
| T_INC rw_variable
{
$$ = expr.NewPreInc($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| rw_variable T_DEC
{
$$ = expr.NewPostDec($1)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $2))
comments.AddComments($$, comments[$1])
}
| T_DEC rw_variable
{
$$ = expr.NewPreDec($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| expr T_BOOLEAN_OR expr
{
$$ = binary_op.NewBooleanOr($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_BOOLEAN_AND expr
{
$$ = binary_op.NewBooleanAnd($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_LOGICAL_OR expr
{
$$ = binary_op.NewLogicalOr($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_LOGICAL_AND expr
{
$$ = binary_op.NewLogicalAnd($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_LOGICAL_XOR expr
{
$$ = binary_op.NewLogicalXor($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '|' expr
{
$$ = binary_op.NewBitwiseOr($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '&' expr
{
$$ = binary_op.NewBitwiseAnd($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '^' expr
{
$$ = binary_op.NewBitwiseXor($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '.' expr
{
$$ = binary_op.NewConcat($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '+' expr
{
$$ = binary_op.NewPlus($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '-' expr
{
$$ = binary_op.NewMinus($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '*' expr
{
$$ = binary_op.NewMul($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_POW expr
{
$$ = binary_op.NewPow($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '/' expr
{
$$ = binary_op.NewDiv($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '%' expr
{
$$ = binary_op.NewMod($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_SL expr
{
$$ = binary_op.NewShiftLeft($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_SR expr
{
$$ = binary_op.NewShiftRight($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| '+' expr %prec T_INC
{
$$ = expr.NewUnaryPlus($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| '-' expr %prec T_INC
{
$$ = expr.NewUnaryMinus($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| '!' expr
{
$$ = expr.NewBooleanNot($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| '~' expr
{
$$ = expr.NewBitwiseNot($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| expr T_IS_IDENTICAL expr
{
$$ = binary_op.NewIdentical($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_IS_NOT_IDENTICAL expr
{
$$ = binary_op.NewNotIdentical($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_IS_EQUAL expr
{
$$ = binary_op.NewEqual($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_IS_NOT_EQUAL expr
{
$$ = binary_op.NewNotEqual($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '<' expr
{
$$ = binary_op.NewSmaller($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_IS_SMALLER_OR_EQUAL expr
{
$$ = binary_op.NewSmallerOrEqual($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr '>' expr
{
$$ = binary_op.NewGreater($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_IS_GREATER_OR_EQUAL expr
{
$$ = binary_op.NewGreaterOrEqual($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| expr T_INSTANCEOF class_name_reference
{
$$ = expr.NewInstanceOf($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| parenthesis_expr
{ $$ = $1 }
2018-02-01 14:07:18 +00:00
| new_expr
{ $$ = $1 }
2018-02-04 16:51:44 +00:00
| '(' new_expr ')' instance_call
{
$$ = $2
for _, n := range($4) {
switch nn := n.(type) {
case *expr.ArrayDimFetch:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, $1.Comments())
$$ = nn
case *expr.PropertyFetch:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, $1.Comments())
$$ = nn
case *expr.MethodCall:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, $1.Comments())
$$ = nn
}
}
}
2018-02-04 17:37:27 +00:00
| expr '?' expr ':' expr
{
$$ = expr.NewTernary($1, $3, $5)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $5))
comments.AddComments($$, comments[$1])
}
| expr '?' ':' expr
{
$$ = expr.NewTernary($1, nil, $4)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $4))
comments.AddComments($$, comments[$1])
}
| internal_functions_in_yacc
{ $$ = $1 }
| T_INT_CAST expr
{
$$ = cast.NewCastInt($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_DOUBLE_CAST expr
{
$$ = cast.NewCastDouble($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_STRING_CAST expr
{
$$ = cast.NewCastString($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_ARRAY_CAST expr
{
$$ = cast.NewCastArray($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_OBJECT_CAST expr
{
$$ = cast.NewCastObject($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_BOOL_CAST expr
{
$$ = cast.NewCastBool($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_UNSET_CAST expr
{
$$ = cast.NewCastUnset($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_EXIT exit_expr
{
$$ = expr.NewExit($2, strings.EqualFold($1.Value, "die"))
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| '@' expr
{
$$ = expr.NewErrorSuppress($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| scalar
{ $$ = $1 }
| combined_scalar_offset
{ $$ = $1 }
| combined_scalar
{ $$ = $1 }
| '`' backticks_expr '`'
{
$$ = expr.NewShellExec($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_PRINT expr
{
$$ = expr.NewPrint($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_YIELD
{
$$ = expr.NewYield(nil, nil)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| function is_reference '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
{
$$ = expr.NewClosure($4, $6, nil, $8, false, $2.value, "")
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $9))
comments.AddComments($$, $1.Comments())
}
| T_STATIC function is_reference '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
{
$$ = expr.NewClosure($5, $7, nil, $9, true, $3.value, "")
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-10 13:08:54 +00:00
yield := expr.NewYield(nil, $2)
positions.AddPosition(yield, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments(yield, $1.Comments())
$$ = stmt.NewExpression(yield)
2018-02-04 17:37:27 +00:00
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_YIELD variable
{
2018-02-10 13:08:54 +00:00
yield := expr.NewYield(nil, $2)
positions.AddPosition(yield, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments(yield, $1.Comments())
$$ = stmt.NewExpression(yield)
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-10 13:08:54 +00:00
yield := expr.NewYield($2, $4)
positions.AddPosition(yield, positionBuilder.NewTokenNodePosition($1, $4))
comments.AddComments(yield, $1.Comments())
$$ = stmt.NewExpression(yield)
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-10 13:08:54 +00:00
yield := expr.NewYield($2, $4)
positions.AddPosition(yield, positionBuilder.NewTokenNodePosition($1, $4))
comments.AddComments(yield, $1.Comments())
$$ = stmt.NewExpression(yield)
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 ']'
{
$$ = expr.NewArrayDimFetch($1, $3)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
comments.AddComments($$, comments[$1])
}
| combined_scalar_offset '[' dim_offset ']'
{
$$ = expr.NewArrayDimFetch($1, $3)
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())
$$ = expr.NewArrayDimFetch(str, $3)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition(str, $4))
comments.AddComments($$, comments[str])
}
| general_constant '[' dim_offset ']'
{
$$ = expr.NewArrayDimFetch($1, $3)
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 ')'
{
$$ = expr.NewArray($3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
| '[' array_pair_list ']'
{
$$ = expr.NewShortArray($2)
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
{ $$ = $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-02 12:36:57 +00:00
{ $$ = []node.Node{} }
2018-01-29 14:42:52 +00:00
| T_USE '(' lexical_var_list ')'
2018-02-02 12:36:57 +00:00
{ $$ = $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())
$$ = append($1, use)
}
| 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())
$$ = append($1, use)
}
| 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())
$$ = []node.Node{use}
}
| '&' 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())
$$ = []node.Node{use}
}
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))
$$ = expr.NewFunctionCall(name, $2.nodes)
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())
$$ = expr.NewFunctionCall(funcName, $4.nodes)
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())
$$ = expr.NewFunctionCall(funcName, $3.nodes)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition(funcName, $3.endToken))
comments.AddComments($$, comments[funcName])
}
| class_name T_PAAMAYIM_NEKUDOTAYIM variable_name function_call_parameter_list
{
$$ = expr.NewStaticCall($1, $3, $4.nodes)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4.endToken))
comments.AddComments($$, comments[$1])
}
| class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects function_call_parameter_list
{
$$ = expr.NewStaticCall($1, $3, $4.nodes)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4.endToken))
comments.AddComments($$, comments[$1])
}
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_name function_call_parameter_list
{
$$ = expr.NewStaticCall($1, $3, $4.nodes)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4.endToken))
comments.AddComments($$, comments[$1])
}
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects function_call_parameter_list
{
$$ = expr.NewStaticCall($1, $3, $4.nodes)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4.endToken))
comments.AddComments($$, comments[$1])
}
| variable_without_objects function_call_parameter_list
{
$$ = expr.NewFunctionCall($1, $2.nodes)
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
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| namespace_name
{
$$ = name.NewName($1)
positions.AddPosition($$, positionBuilder.NewNodeListPosition($1))
comments.AddComments($$, ListGetFirstNodeComments($1))
}
| T_NAMESPACE T_NS_SEPARATOR namespace_name
{
$$ = name.NewRelative($3)
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_NS_SEPARATOR namespace_name
{
$$ = name.NewFullyQualified($2)
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
{
$$ = name.NewName($1)
positions.AddPosition($$, positionBuilder.NewNodeListPosition($1))
comments.AddComments($$, ListGetFirstNodeComments($1))
}
| T_NAMESPACE T_NS_SEPARATOR namespace_name
{
$$ = name.NewRelative($3)
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_NS_SEPARATOR namespace_name
{
$$ = name.NewFullyQualified($2)
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
{ $$ = $1 }
| dynamic_class_name_reference
{ $$ = $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
{
$$ = $1
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])
$$ = nn
case *expr.PropertyFetch:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = nn
case *expr.MethodCall:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = 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])
$$ = nn
case *expr.PropertyFetch:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = nn
case *expr.MethodCall:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = nn
2018-02-01 14:07:18 +00:00
}
}
}
| base_variable
{ $$ = $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-01 14:07:18 +00:00
{ $$ = append($1, $2...) }
2018-01-29 14:42:52 +00:00
| /* empty */
2018-02-04 16:51:44 +00:00
{ $$ = []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
{ $$ = $2 }
2017-12-01 07:15:46 +00:00
;
exit_expr:
2018-02-02 13:01:03 +00:00
/* empty */
{ $$ = nil }
| '(' ')'
{ $$ = nil }
| parenthesis_expr
{ $$ = $1 }
2017-12-01 07:15:46 +00:00
;
backticks_expr:
2018-02-04 17:37:27 +00:00
/* empty */
{ $$ = []node.Node{} }
| T_ENCAPSED_AND_WHITESPACE
{ $$ = []node.Node{scalar.NewEncapsedStringPart($1.Value)} }
| encaps_list
{ $$ = $1; }
2017-12-01 07:15:46 +00:00
;
ctor_arguments:
2018-02-01 14:07:18 +00:00
/* empty */
{ $$ = nil }
| function_call_parameter_list
{ $$ = $1 }
2018-01-27 10:33:13 +00:00
;
common_scalar:
2018-01-29 14:22:04 +00:00
T_LNUMBER
{
$$ = scalar.NewLnumber($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_DNUMBER
{
$$ = scalar.NewDnumber($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
2018-02-01 14:07:18 +00:00
| T_CONSTANT_ENCAPSED_STRING
{
$$ = scalar.NewString($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
2018-01-29 14:22:04 +00:00
| T_LINE
{
$$ = scalar.NewMagicConstant($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_FILE
{
$$ = scalar.NewMagicConstant($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_DIR
{
$$ = scalar.NewMagicConstant($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_TRAIT_C
{
$$ = scalar.NewMagicConstant($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_METHOD_C
{
$$ = scalar.NewMagicConstant($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_FUNC_C
{
$$ = scalar.NewMagicConstant($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| T_NS_C
{
$$ = scalar.NewMagicConstant($1.Value)
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
{
$$ = scalar.NewString($2.Value)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))/* TODO: mark as Heredoc*/
comments.AddComments($$, $1.Comments())
}
| T_START_HEREDOC T_END_HEREDOC
{
$$ = scalar.NewEncapsed(nil)
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))
$$ = expr.NewClassConstFetch($1, target)
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
{ $$ = $1 }
2018-01-27 10:33:13 +00:00
;
static_scalar_value:
2018-02-04 18:55:45 +00:00
common_scalar
{ $$ = $1 }
| static_class_name_scalar
{ $$ = $1 }
| namespace_name
{
$$ = name.NewName($1)
positions.AddPosition($$, positionBuilder.NewNodeListPosition($1))
comments.AddComments($$, ListGetFirstNodeComments($1))
}
| T_NAMESPACE T_NS_SEPARATOR namespace_name
{
$$ = name.NewRelative($3)
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_NS_SEPARATOR namespace_name
{
$$ = name.NewFullyQualified($2)
positions.AddPosition($$, positionBuilder.NewTokenNodeListPosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_ARRAY '(' static_array_pair_list ')'
{
$$ = expr.NewArray($3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
| '[' static_array_pair_list ']'
{
$$ = expr.NewShortArray($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| static_class_constant
{ $$ = $1 }
| T_CLASS_C
{
$$ = scalar.NewMagicConstant($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| static_operation
{ $$ = $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 ']'
{
$$ = expr.NewArrayDimFetch($1, $3)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '+' static_scalar_value
{
$$ = binary_op.NewPlus($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '-' static_scalar_value
{
$$ = binary_op.NewMinus($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '*' static_scalar_value
{
$$ = binary_op.NewMul($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_POW static_scalar_value
{
$$ = binary_op.NewPow($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '/' static_scalar_value
{
$$ = binary_op.NewDiv($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '%' static_scalar_value
{
$$ = binary_op.NewMod($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| '!' static_scalar_value
{
$$ = expr.NewBooleanNot($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| '~' static_scalar_value
{
$$ = expr.NewBitwiseNot($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| static_scalar_value '|' static_scalar_value
{
$$ = binary_op.NewBitwiseOr($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '&' static_scalar_value
{
$$ = binary_op.NewBitwiseAnd($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '^' static_scalar_value
{
$$ = binary_op.NewBitwiseXor($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_SL static_scalar_value
{
$$ = binary_op.NewShiftLeft($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_SR static_scalar_value
{
$$ = binary_op.NewShiftRight($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '.' static_scalar_value
{
$$ = binary_op.NewConcat($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_LOGICAL_XOR static_scalar_value
{
$$ = binary_op.NewLogicalXor($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_LOGICAL_AND static_scalar_value
{
$$ = binary_op.NewLogicalAnd($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_LOGICAL_OR static_scalar_value
{
$$ = binary_op.NewLogicalOr($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_BOOLEAN_AND static_scalar_value
{
$$ = binary_op.NewBooleanAnd($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_BOOLEAN_OR static_scalar_value
{
$$ = binary_op.NewBooleanOr($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_IS_IDENTICAL static_scalar_value
{
$$ = binary_op.NewIdentical($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_IS_NOT_IDENTICAL static_scalar_value
{
$$ = binary_op.NewNotIdentical($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_IS_EQUAL static_scalar_value
{
$$ = binary_op.NewEqual($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_IS_NOT_EQUAL static_scalar_value
{
$$ = binary_op.NewNotEqual($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '<' static_scalar_value
{
$$ = binary_op.NewSmaller($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '>' static_scalar_value
{
$$ = binary_op.NewGreater($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_IS_SMALLER_OR_EQUAL static_scalar_value
{
$$ = binary_op.NewSmallerOrEqual($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value T_IS_GREATER_OR_EQUAL static_scalar_value
{
$$ = binary_op.NewGreaterOrEqual($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '?' ':' static_scalar_value
{
$$ = expr.NewTernary($1, nil, $4)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $4))
comments.AddComments($$, comments[$1])
}
| static_scalar_value '?' static_scalar_value ':' static_scalar_value
{
$$ = expr.NewTernary($1, $3, $5)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $5))
comments.AddComments($$, comments[$1])
}
| '+' static_scalar_value
{
$$ = expr.NewUnaryPlus($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| '-' static_scalar_value
{
$$ = expr.NewUnaryMinus($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| '(' static_scalar_value ')'
{ $$ = $2 }
2018-01-27 10:33:13 +00:00
;
general_constant:
2018-02-02 12:36:57 +00:00
class_constant
{ $$ = $1 }
| 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))
$$ = expr.NewConstFetch(name)
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())
$$ = expr.NewConstFetch(name)
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())
$$ = expr.NewConstFetch(name)
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))
$$ = expr.NewVariable(name)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments(name, $1.Comments())
comments.AddComments($$, $1.Comments())
}
| general_constant
{ $$ = $1 }
| class_name_scalar
{ $$ = $1 }
| common_scalar
{ $$ = $1 }
| '"' encaps_list '"'
{
$$ = scalar.NewEncapsed($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_START_HEREDOC encaps_list T_END_HEREDOC
{
$$ = scalar.NewEncapsed($2)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $3))
comments.AddComments($$, $1.Comments())
}
| T_CLASS_C
{
$$ = scalar.NewMagicConstant($1.Value)
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 */
{ $$ = nil }
| non_empty_static_array_pair_list possible_comma
{ $$ = $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])
$$ = append($1, arrayItem)
}
| 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])
$$ = append($1, arrayItem)
}
| 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])
$$ = []node.Node{arrayItem}
}
| static_scalar_value
{
arrayItem := expr.NewArrayItem(nil, $1, false)
positions.AddPosition(arrayItem, positionBuilder.NewNodePosition($1))
comments.AddComments(arrayItem, comments[$1])
$$ = []node.Node{arrayItem}
}
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
{ $$ = $1 }
| expr_without_variable
{ $$ = $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 ')'
{ $$ = $2 }
| '(' yield_expr ')'
{ $$ = $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-04 18:55:45 +00:00
{ $$ = $1 }
2018-01-27 10:33:13 +00:00
;
w_variable:
2018-01-29 19:12:12 +00:00
variable
2018-02-04 18:55:45 +00:00
{ $$ = $1 }
2018-01-27 10:33:13 +00:00
;
rw_variable:
2018-01-29 19:12:12 +00:00
variable
2018-02-04 18:55:45 +00:00
{ $$ = $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
{
$$ = $1
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])
$$ = nn
case *expr.PropertyFetch:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = nn
case *expr.MethodCall:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = nn
}
}
for _, n := range($5) {
switch nn := n.(type) {
case *expr.ArrayDimFetch:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = nn
case *expr.PropertyFetch:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = nn
case *expr.MethodCall:
nn.Variable = $$
positions.AddPosition($$, positionBuilder.NewNodesPosition($$, nn))
comments.AddComments(nn, comments[$1])
$$ = nn
}
}
}
2018-01-29 19:12:12 +00:00
| base_variable_with_function_calls
{ $$ = $1 }
2018-01-27 10:33:13 +00:00
;
variable_properties:
2018-02-04 16:51:44 +00:00
variable_properties variable_property
{ $$ = append($1, $2...) }
| /* empty */
{ $$ = []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...)
}
$$ = $2
}
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))
$$ = append($1, fetch)
}
| method '[' dim_offset ']'
{
fetch := expr.NewArrayDimFetch(nil, $3)
positions.AddPosition(fetch, positionBuilder.NewNodePosition($3))
$$ = []node.Node{$1, fetch}
}
2018-01-27 10:33:13 +00:00
;
method:
2018-02-04 16:51:44 +00:00
function_call_parameter_list
{
$$ = expr.NewMethodCall(nil, nil, $1.nodes)
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
{ $$ = []node.Node{$1} }
| array_method_dereference
{ $$ = $1 }
| /* empty */
{ $$ = nil }
2018-01-27 10:33:13 +00:00
;
variable_without_objects:
2018-02-01 18:40:04 +00:00
reference_variable
{ $$ = $1 }
| simple_indirect_reference reference_variable
{
$1.last.SetVarName($2)
for _, n := range($1.all) {
positions[n] = positionBuilder.NewNodesPosition(n, $2)
}
$$ = $1.all[0]
}
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
{
$$ = expr.NewStaticPropertyFetch($1, $3)
positions.AddPosition($$, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments($$, comments[$1])
}
| variable_class_name T_PAAMAYIM_NEKUDOTAYIM variable_without_objects
{
$$ = expr.NewStaticPropertyFetch($1, $3)
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-01 18:40:04 +00:00
{ $$ = $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
{
$$ = expr.NewArrayDimFetch($1, $3)
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
{
$$ = expr.NewArrayDimFetch($1, $3)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
comments.AddComments($$, comments[$1])
}
2018-01-27 10:33:13 +00:00
;
base_variable_with_function_calls:
2018-01-29 19:12:12 +00:00
base_variable { $$ = $1 }
| array_function_dereference { $$ = $1 }
| function_call { $$ = $1 }
2018-01-27 10:33:13 +00:00
;
base_variable:
2018-02-01 18:40:04 +00:00
reference_variable
{ $$ = $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)
}
$$ = $1.all[0]
}
2018-02-01 18:40:04 +00:00
| static_member
{ $$ = $1 }
2018-01-27 10:33:13 +00:00
;
reference_variable:
2018-01-29 19:12:12 +00:00
reference_variable '[' dim_offset ']'
{
$$ = expr.NewArrayDimFetch($1, $3)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
comments.AddComments($$, comments[$1])
}
| reference_variable '{' expr '}'
{
$$ = expr.NewArrayDimFetch($1, $3)
positions.AddPosition($$, positionBuilder.NewNodeTokenPosition($1, $4))
comments.AddComments($$, comments[$1])
}
2018-02-01 18:40:04 +00:00
| compound_variable
{ $$ = $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))
$$ = expr.NewVariable(name)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments(name, $1.Comments())
comments.AddComments($$, $1.Comments())
}
| '$' '{' expr '}'
{
2018-01-31 10:29:38 +00:00
$$ = expr.NewVariable($3)
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 */
{ $$ = nil }
| expr
{ $$ = $1 }
2018-01-27 10:33:13 +00:00
;
object_property:
2018-02-01 14:07:18 +00:00
object_dim_list
{ $$ = $1 }
| variable_without_objects
{
2018-02-04 16:51:44 +00:00
fetch := expr.NewPropertyFetch(nil, $1)
positions.AddPosition(fetch, positionBuilder.NewNodePosition($1))
$$ = []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))
$$ = 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))
$$ = 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))
$$ = []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
{
$$ = node.NewIdentifier($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
comments.AddComments($$, $1.Comments())
}
| '{' expr '}'
{ $$ = $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())
$$ = simpleIndirectReference{[]*expr.Variable{n}, n}
}
| 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
$$ = $1
}
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-01 10:35:43 +00:00
{ $$ = append($1, $3) }
2018-01-29 14:42:52 +00:00
| assignment_list_element
2018-02-01 10:35:43 +00:00
{ $$ = []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
{
$$ = expr.NewArrayItem(nil, $1, false)
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())
$$ = expr.NewArrayItem(nil, item, false)
positions.AddPosition($$, positionBuilder.NewNodePosition(item))
comments.AddComments($$, comments[item])
2018-02-01 10:35:43 +00:00
}
| /* empty */
{ $$ = nil }
2018-01-27 10:33:13 +00:00
;
array_pair_list:
2018-02-01 10:04:17 +00:00
/* empty */
2018-02-10 09:07:20 +00:00
{ $$ = []node.Node{} }
2018-02-01 10:04:17 +00:00
| non_empty_array_pair_list possible_comma
{ $$ = $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])
$$ = append($1, arrayItem)
}
| non_empty_array_pair_list ',' expr
{
arrayItem := expr.NewArrayItem(nil, $3, false)
positions.AddPosition(arrayItem, positionBuilder.NewNodePosition($3))
comments.AddComments(arrayItem, comments[$3])
$$ = append($1, arrayItem)
}
| expr T_DOUBLE_ARROW expr
{
arrayItem := expr.NewArrayItem($1, $3, false)
positions.AddPosition(arrayItem, positionBuilder.NewNodesPosition($1, $3))
comments.AddComments(arrayItem, comments[$1])
$$ = []node.Node{arrayItem}
}
| expr
{
arrayItem := expr.NewArrayItem(nil, $1, false)
positions.AddPosition(arrayItem, positionBuilder.NewNodePosition($1))
comments.AddComments(arrayItem, comments[$1])
$$ = []node.Node{arrayItem}
}
| 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])
$$ = append($1, arrayItem)
}
| 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())
$$ = append($1, arrayItem)
}
| expr T_DOUBLE_ARROW '&' w_variable
{
arrayItem := expr.NewArrayItem($1, $4, true)
positions.AddPosition(arrayItem, positionBuilder.NewNodesPosition($1, $4))
comments.AddComments(arrayItem, comments[$1])
$$ = []node.Node{arrayItem}
}
| '&' w_variable
{
arrayItem := expr.NewArrayItem(nil, $2, true)
positions.AddPosition(arrayItem, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments(arrayItem, $1.Comments())
$$ = []node.Node{arrayItem}
}
2017-12-01 07:15:46 +00:00
;
encaps_list:
2018-01-31 10:55:50 +00:00
encaps_list encaps_var
{ $$ = append($1, $2) }
| encaps_list T_ENCAPSED_AND_WHITESPACE
{
encapsed := scalar.NewEncapsedStringPart($2.Value)
positions.AddPosition(encapsed, positionBuilder.NewTokenPosition($2))
$$ = append($1, encapsed)
comments.AddComments(encapsed, $2.Comments())
}
| encaps_var
{ $$ = []node.Node{$1} }
| T_ENCAPSED_AND_WHITESPACE encaps_var
{
encapsed := scalar.NewEncapsedStringPart($1.Value)
positions.AddPosition(encapsed, positionBuilder.NewTokenPosition($1))
$$ = []node.Node{encapsed, $2}
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))
$$ = expr.NewVariable(name)
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))
$$ = expr.NewArrayDimFetch(variable, $3)
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))
$$ = expr.NewPropertyFetch(variable, fetch)
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-08 10:48:38 +00:00
$$ = $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))
$$ = expr.NewArrayDimFetch(variable, $4)
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 '}'
{ $$ = $2; }
;
2017-12-01 07:15:46 +00:00
encaps_var_offset:
2018-01-31 10:55:50 +00:00
T_STRING
{
$$ = scalar.NewString($1.Value)
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 {
$$ = scalar.NewLnumber($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
} else {
$$ = scalar.NewString($1.Value)
positions.AddPosition($$, positionBuilder.NewTokenPosition($1))
}
comments.AddComments($$, $1.Comments())
}
| T_VARIABLE
{
identifier := node.NewIdentifier($1.Value)
positions.AddPosition(identifier, positionBuilder.NewTokenPosition($1))
$$ = expr.NewVariable(identifier)
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 ')'
{
$$ = expr.NewIsset($3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
| T_EMPTY '(' variable ')'
{
$$ = expr.NewEmpty($3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
| T_EMPTY '(' expr_without_variable ')'
{
$$ = expr.NewEmpty($3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
| T_INCLUDE expr
{
$$ = expr.NewInclude($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_INCLUDE_ONCE expr
{
$$ = expr.NewIncludeOnce($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_EVAL '(' expr ')'
{
$$ = expr.NewEval($3)
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
comments.AddComments($$, $1.Comments())
}
| T_REQUIRE expr
{
$$ = expr.NewRequire($2)
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $2))
comments.AddComments($$, $1.Comments())
}
| T_REQUIRE_ONCE expr
{
$$ = expr.NewRequireOnce($2)
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
{ $$ = []node.Node{$1} }
| isset_variables ',' isset_variable
{ $$ = append($1, $3) }
2017-12-01 07:15:46 +00:00
;
isset_variable:
2018-02-04 18:55:45 +00:00
variable
{ $$ = $1 }
| expr_without_variable
{ $$ = $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))
$$ = expr.NewClassConstFetch($1, target)
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))
$$ = expr.NewClassConstFetch($1, target)
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))
$$ = expr.NewClassConstFetch($1, target)
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))
$$ = expr.NewClassConstFetch($1, target)
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
%%