Building temporary preproprocessed grammar file.
Building parser. Output: "sh: kmyacc: command not found"
The following temporary preproprocessed grammar file was used:
%pure_parser
%expect 2

%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
%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
%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 '['
%nonassoc T_NEW T_CLONE
%token T_EXIT
%token T_IF
%left T_ELSEIF
%left T_ELSE
%left T_ENDIF
%token T_LNUMBER
%token T_DNUMBER
%token T_STRING
%token T_STRING_VARNAME
%token T_VARIABLE
%token T_NUM_STRING
%token T_INLINE_HTML
%token T_CHARACTER
%token T_BAD_CHARACTER
%token T_ENCAPSED_AND_WHITESPACE
%token T_CONSTANT_ENCAPSED_STRING
%token T_ECHO
%token T_DO
%token T_WHILE
%token T_ENDWHILE
%token T_FOR
%token T_ENDFOR
%token T_FOREACH
%token T_ENDFOREACH
%token T_DECLARE
%token T_ENDDECLARE
%token T_AS
%token T_SWITCH
%token T_ENDSWITCH
%token T_CASE
%token T_DEFAULT
%token T_BREAK
%token T_CONTINUE
%token T_GOTO
%token T_FUNCTION
%token T_CONST
%token T_RETURN
%token T_TRY
%token T_CATCH
%token T_THROW
%token T_USE
%token T_INSTEADOF
%token T_GLOBAL
%right T_STATIC T_ABSTRACT T_FINAL T_PRIVATE T_PROTECTED T_PUBLIC
%token T_VAR
%token T_UNSET
%token T_ISSET
%token T_EMPTY
%token T_HALT_COMPILER
%token T_CLASS
%token T_TRAIT
%token T_INTERFACE
%token T_EXTENDS
%token T_IMPLEMENTS
%token T_OBJECT_OPERATOR
%token T_DOUBLE_ARROW
%token T_LIST
%token T_ARRAY
%token T_CALLABLE
%token T_CLASS_C
%token T_TRAIT_C
%token T_METHOD_C
%token T_FUNC_C
%token T_LINE
%token T_FILE
%token T_COMMENT
%token T_DOC_COMMENT
%token T_OPEN_TAG
%token T_OPEN_TAG_WITH_ECHO
%token T_CLOSE_TAG
%token T_WHITESPACE
%token T_START_HEREDOC
%token T_END_HEREDOC
%token T_DOLLAR_OPEN_CURLY_BRACES
%token T_CURLY_OPEN
%token T_PAAMAYIM_NEKUDOTAYIM
%token T_NAMESPACE
%token T_NS_C
%token T_DIR
%token T_NS_SEPARATOR

%%

start:
    top_statement_list                                      { $$ = PHPParser_Node_Stmt_Namespace::postprocess($1); }
;

top_statement_list:
      top_statement_list top_statement                      { if (is_array($2)) { $$ = array_merge($1, $2); } else { $1[] = $2; $$ = $1; }; }
    | /* empty */                                           { $$ = array(); }
;

namespace_name:
      T_STRING                                              { $$ = array($1); }
    | namespace_name T_NS_SEPARATOR T_STRING                { $1[] = $3; $$ = $1; }
;

top_statement:
      statement                                             { $$ = $1; }
    | function_declaration_statement                        { $$ = $1; }
    | class_declaration_statement                           { $$ = $1; }
    | T_HALT_COMPILER
          { $$ = new PHPParser_Node_Stmt_HaltCompiler($this->lexer->handleHaltCompiler(), $line, $docComment); }
    | T_NAMESPACE namespace_name ';'                        { $$ = new PHPParser_Node_Stmt_Namespace(new PHPParser_Node_Name($2, $line, $docComment), null, $line, $docComment); }
    | T_NAMESPACE namespace_name '{' top_statement_list '}' { $$ = new PHPParser_Node_Stmt_Namespace(new PHPParser_Node_Name($2, $line, $docComment), $4, $line, $docComment); }
    | T_NAMESPACE '{' top_statement_list '}'                { $$ = new PHPParser_Node_Stmt_Namespace(null, $3, $line, $docComment); }
    | T_USE use_declarations ';'                            { $$ = new PHPParser_Node_Stmt_Use($2, $line, $docComment); }
    | T_CONST constant_declaration_list ';'                 { $$ = new PHPParser_Node_Stmt_Const($2, $line, $docComment); }
;

use_declarations:
      use_declarations ',' use_declaration                  { $1[] = $3; $$ = $1; }
    | use_declaration                                       { $$ = array($1); }
;

use_declaration:
      namespace_name                                        { $$ = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($1, $line, $docComment), null, $line, $docComment); }
    | namespace_name T_AS T_STRING                          { $$ = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($1, $line, $docComment), $3, $line, $docComment); }
    | T_NS_SEPARATOR namespace_name                         { $$ = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($2, $line, $docComment), null, $line, $docComment); }
    | T_NS_SEPARATOR namespace_name T_AS T_STRING           { $$ = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($2, $line, $docComment), $4, $line, $docComment); }
;

constant_declaration_list:
      constant_declaration_list ',' constant_declaration    { $1[] = $3; $$ = $1; }
    | constant_declaration                                  { $$ = array($1); }
;

constant_declaration:
    T_STRING '=' static_scalar                              { $$ = new PHPParser_Node_Const($1, $3, $line, $docComment); }
;

inner_statement_list:
      inner_statement_list inner_statement                  { if (is_array($2)) { $$ = array_merge($1, $2); } else { $1[] = $2; $$ = $1; }; }
    | /* empty */                                           { $$ = array(); }
;

inner_statement:
      statement                                             { $$ = $1; }
    | function_declaration_statement                        { $$ = $1; }
    | class_declaration_statement                           { $$ = $1; }
    | T_HALT_COMPILER                                       { throw new PHPParser_Error('__halt_compiler() can only be used from the outermost scope'); }
;

statement:
      '{' inner_statement_list '}'                          { $$ = $2; }
    | T_IF '(' expr ')' statement elseif_list else_single   { $$ = new PHPParser_Node_Stmt_If($3, array('stmts' => is_array($5) ? $5 : array($5), 'elseifs' => $6, 'else' => $7), $line, $docComment); }
    | T_IF '(' expr ')' ':' inner_statement_list new_elseif_list new_else_single T_ENDIF ';'
          { $$ = new PHPParser_Node_Stmt_If($3, array('stmts' => $6, 'elseifs' => $7, 'else' => $8), $line, $docComment); }
    | T_WHILE '(' expr ')' while_statement                  { $$ = new PHPParser_Node_Stmt_While($3, $5, $line, $docComment); }
    | T_DO statement T_WHILE '(' expr ')' ';'               { $$ = new PHPParser_Node_Stmt_Do($5, is_array($2) ? $2 : array($2), $line, $docComment); }
    | T_FOR '(' for_expr ';'  for_expr ';' for_expr ')' for_statement
          { $$ = new PHPParser_Node_Stmt_For(array('init' => $3, 'cond' => $5, 'loop' => $7, 'stmts' => $9), $line, $docComment); }
    | T_SWITCH '(' expr ')' switch_case_list                { $$ = new PHPParser_Node_Stmt_Switch($3, $5, $line, $docComment); }
    | T_BREAK ';'                                           { $$ = new PHPParser_Node_Stmt_Break(null, $line, $docComment); }
    | T_BREAK expr ';'                                      { $$ = new PHPParser_Node_Stmt_Break($2, $line, $docComment); }
    | T_CONTINUE ';'                                        { $$ = new PHPParser_Node_Stmt_Continue(null, $line, $docComment); }
    | T_CONTINUE expr ';'                                   { $$ = new PHPParser_Node_Stmt_Continue($2, $line, $docComment); }
    | T_RETURN ';'                                          { $$ = new PHPParser_Node_Stmt_Return(null, $line, $docComment); }
    | T_RETURN expr ';'                                     { $$ = new PHPParser_Node_Stmt_Return($2, $line, $docComment); }
    | T_GLOBAL global_var_list ';'                          { $$ = new PHPParser_Node_Stmt_Global($2, $line, $docComment); }
    | T_STATIC static_var_list ';'                          { $$ = new PHPParser_Node_Stmt_Static($2, $line, $docComment); }
    | T_ECHO expr_list ';'                                  { $$ = new PHPParser_Node_Stmt_Echo($2, $line, $docComment); }
    | T_INLINE_HTML                                         { $$ = new PHPParser_Node_Stmt_InlineHTML($1, $line, $docComment); }
    | expr ';'                                              { $$ = $1; }
    | T_UNSET '(' variables_list ')' ';'                    { $$ = new PHPParser_Node_Stmt_Unset($3, $line, $docComment); }
    | T_FOREACH '(' expr T_AS variable ')' foreach_statement
          { $$ = new PHPParser_Node_Stmt_Foreach($3, $5, array('keyVar' => null, 'byRef' => false, 'stmts' => $7), $line, $docComment); }
    | T_FOREACH '(' expr T_AS '&' variable ')' foreach_statement
          { $$ = new PHPParser_Node_Stmt_Foreach($3, $6, array('keyVar' => null, 'byRef' => true, 'stmts' => $8), $line, $docComment); }
    | T_FOREACH '(' expr T_AS variable T_DOUBLE_ARROW optional_ref variable ')' foreach_statement
          { $$ = new PHPParser_Node_Stmt_Foreach($3, $8, array('keyVar' => $5, 'byRef' => $7, 'stmts' => $10), $line, $docComment); }
    | T_DECLARE '(' declare_list ')' declare_statement      { $$ = new PHPParser_Node_Stmt_Declare($3, $5, $line, $docComment); }
    | ';'                                                   { $$ = array(); /* means: no statement */ }
    | T_TRY '{' inner_statement_list '}' catches            { $$ = new PHPParser_Node_Stmt_TryCatch($3, $5, $line, $docComment); }
    | T_THROW expr ';'                                      { $$ = new PHPParser_Node_Stmt_Throw($2, $line, $docComment); }
    | T_GOTO T_STRING ';'                                   { $$ = new PHPParser_Node_Stmt_Goto($2, $line, $docComment); }
    | T_STRING ':'                                          { $$ = new PHPParser_Node_Stmt_Label($1, $line, $docComment); }
;

catches:
      catch                                                 { $$ = array($1); }
    | catches catch                                         { $1[] = $2; $$ = $1; }
;

catch:
    T_CATCH '(' name T_VARIABLE ')' '{' inner_statement_list '}'
        { $$ = new PHPParser_Node_Stmt_Catch($3, substr($4, 1), $7, $line, $docComment); }
;

variables_list:
      variable                                              { $$ = array($1); }
    | variables_list ',' variable                           { $1[] = $3; $$ = $1; }
;

optional_ref:
      /* empty */                                           { $$ = false; }
    | '&'                                                   { $$ = true; }
;

function_declaration_statement:
    T_FUNCTION optional_ref T_STRING '(' parameter_list ')' '{' inner_statement_list '}'
        { $$ = new PHPParser_Node_Stmt_Function($3, array('byRef' => $2, 'params' => $5, 'stmts' => $8), $line, $docComment); }
;

class_declaration_statement:
      class_entry_type T_STRING extends_from implements_list '{' class_statement_list '}'
          { $$ = new PHPParser_Node_Stmt_Class($2, array('type' => $1, 'extends' => $3, 'implements' => $4, 'stmts' => $6), $line, $docComment); }
    | T_INTERFACE T_STRING interface_extends_list '{' class_statement_list '}'
          { $$ = new PHPParser_Node_Stmt_Interface($2, array('extends' => $3, 'stmts' => $5), $line, $docComment); }
    | T_TRAIT T_STRING '{' class_statement_list '}'
          { $$ = new PHPParser_Node_Stmt_Trait($2, $4, $line, $docComment); }
;

class_entry_type:
      T_CLASS                                               { $$ = 0; }
    | T_ABSTRACT T_CLASS                                    { $$ = PHPParser_Node_Stmt_Class::MODIFIER_ABSTRACT; }
    | T_FINAL T_CLASS                                       { $$ = PHPParser_Node_Stmt_Class::MODIFIER_FINAL; }
;

extends_from:
      /* empty */                                           { $$ = null; }
    | T_EXTENDS name                                        { $$ = $2; }
;

interface_extends_list:
      /* empty */                                           { $$ = array(); }
    | T_EXTENDS name_list                                   { $$ = $2; }
;

implements_list:
      /* empty */                                           { $$ = array(); }
    | T_IMPLEMENTS name_list                                { $$ = $2; }
;

name_list:
      name                                                  { $$ = array($1); }
    | name_list ',' name                                    { $1[] = $3; $$ = $1; }
;

for_statement:
      statement                                             { $$ = is_array($1) ? $1 : array($1); }
    | ':' inner_statement_list T_ENDFOR ';'                 { $$ = $2; }
;

foreach_statement:
      statement                                             { $$ = is_array($1) ? $1 : array($1); }
    | ':' inner_statement_list T_ENDFOREACH ';'             { $$ = $2; }
;

declare_statement:
      statement                                             { $$ = is_array($1) ? $1 : array($1); }
    | ':' inner_statement_list T_ENDDECLARE ';'             { $$ = $2; }
;

declare_list:
      declare_list_element                                  { $$ = array($1); }
    | declare_list ',' declare_list_element                 { $1[] = $3; $$ = $1; }
;

declare_list_element:
      T_STRING '=' static_scalar                            { $$ = new PHPParser_Node_Stmt_DeclareDeclare($1, $3, $line, $docComment); }
;

switch_case_list:
      '{' case_list '}'                                     { $$ = $2; }
    | '{' ';' case_list '}'                                 { $$ = $3; }
    | ':' case_list T_ENDSWITCH ';'                         { $$ = $2; }
    | ':' ';' case_list T_ENDSWITCH ';'                     { $$ = $3; }
;

case_list:
      /* empty */                                           { $$ = array(); }
    | case_list case                                        { $1[] = $2; $$ = $1; }
;

case:
      T_CASE expr case_separator inner_statement_list       { $$ = new PHPParser_Node_Stmt_Case($2, $4, $line, $docComment); }
    | T_DEFAULT case_separator inner_statement_list         { $$ = new PHPParser_Node_Stmt_Case(null, $3, $line, $docComment); }
;

case_separator:
      ':'
    | ';'
;

while_statement:
      statement                                             { $$ = is_array($1) ? $1 : array($1); }
    | ':' inner_statement_list T_ENDWHILE ';'               { $$ = $2; }
;

elseif_list:
      /* empty */                                           { $$ = array(); }
    | elseif_list elseif                                    { $1[] = $2; $$ = $1; }
;

elseif:
      T_ELSEIF '(' expr ')' statement                       { $$ = new PHPParser_Node_Stmt_ElseIf($3, is_array($5) ? $5 : array($5), $line, $docComment); }
;

new_elseif_list:
      /* empty */                                           { $$ = array(); }
    | new_elseif_list new_elseif                            { $1[] = $2; $$ = $1; }
;

new_elseif:
     T_ELSEIF '(' expr ')' ':' inner_statement_list         { $$ = new PHPParser_Node_Stmt_ElseIf($3, $6, $line, $docComment); }
;

else_single:
      /* empty */                                           { $$ = null; }
    | T_ELSE statement                                      { $$ = new PHPParser_Node_Stmt_Else(is_array($2) ? $2 : array($2), $line, $docComment); }
;

new_else_single:
      /* empty */                                           { $$ = null; }
    | T_ELSE ':' inner_statement_list                       { $$ = new PHPParser_Node_Stmt_Else($3, $line, $docComment); }
;

parameter_list:
      non_empty_parameter_list                              { $$ = $1; }
    | /* empty */                                           { $$ = array(); }
;

non_empty_parameter_list:
      parameter                                             { $$ = array($1); }
    | non_empty_parameter_list ',' parameter                { $1[] = $3; $$ = $1; }
;

parameter:
      optional_class_type optional_ref T_VARIABLE
          { $$ = new PHPParser_Node_Param(substr($3, 1), null, $1, $2, $line, $docComment); }
    | optional_class_type optional_ref T_VARIABLE '=' static_scalar
          { $$ = new PHPParser_Node_Param(substr($3, 1), $5, $1, $2, $line, $docComment); }
;

optional_class_type:
      /* empty */                                           { $$ = null; }
    | name                                                  { $$ = $1; }
    | T_ARRAY                                               { $$ = 'array'; }
    | T_CALLABLE                                            { $$ = 'callable'; }
;

argument_list:
      non_empty_argument_list                               { $$ = $1; }
    | /* empty */                                           { $$ = array(); }
;

non_empty_argument_list:
      argument                                              { $$ = array($1); }
    | non_empty_argument_list ',' argument                  { $1[] = $3; $$ = $1; }
;

argument:
      expr                                                  { $$ = new PHPParser_Node_Arg($1, false, $line, $docComment); }
    | '&' variable                                          { $$ = new PHPParser_Node_Arg($2, true, $line, $docComment); }
;

global_var_list:
      global_var_list ',' global_var                        { $1[] = $3; $$ = $1; }
    | global_var                                            { $$ = array($1); }
;

global_var:
      T_VARIABLE                                            { $$ = new PHPParser_Node_Expr_Variable(substr($1, 1), $line, $docComment); }
    | '$' variable                                          { $$ = new PHPParser_Node_Expr_Variable($2, $line, $docComment); }
    | '$' '{' expr '}'                                      { $$ = new PHPParser_Node_Expr_Variable($3, $line, $docComment); }
;

static_var_list:
      static_var_list ',' static_var                        { $1[] = $3; $$ = $1; }
    | static_var                                            { $$ = array($1); }
;

static_var:
      T_VARIABLE                                            { $$ = new PHPParser_Node_Stmt_StaticVar(substr($1, 1), null, $line, $docComment); }
    | T_VARIABLE '=' static_scalar                          { $$ = new PHPParser_Node_Stmt_StaticVar(substr($1, 1), $3, $line, $docComment); }
;

class_statement_list:
      class_statement_list class_statement                  { $1[] = $2; $$ = $1; }
    | /* empty */                                           { $$ = array(); }
;

class_statement:
      variable_modifiers property_declaration_list ';'      { $$ = new PHPParser_Node_Stmt_Property($1, $2, $line, $docComment); }
    | T_CONST constant_declaration_list ';'                 { $$ = new PHPParser_Node_Stmt_ClassConst($2, $line, $docComment); }
    | method_modifiers T_FUNCTION optional_ref T_STRING '(' parameter_list ')' method_body
          { $$ = new PHPParser_Node_Stmt_ClassMethod($4, array('type' => $1, 'byRef' => $3, 'params' => $6, 'stmts' => $8), $line, $docComment); }
    | T_USE name_list trait_adaptations                     { $$ = new PHPParser_Node_Stmt_TraitUse($2, $3, $line, $docComment); }
;

trait_adaptations:
      ';'                                                   { $$ = array(); }
    | '{' trait_adaptation_list '}'                         { $$ = $2; }
;

trait_adaptation_list:
      /* empty */                                           { $$ = array(); }
    | trait_adaptation_list trait_adaptation                { $1[] = $2; $$ = $1; }
;

trait_adaptation:
      trait_method_reference_fully_qualified T_INSTEADOF name_list ';'
          { $$ = new PHPParser_Node_Stmt_TraitUseAdaptation_Precedence($1[0], $1[1], $3, $line, $docComment); }
    | trait_method_reference T_AS member_modifier T_STRING ';'
          { $$ = new PHPParser_Node_Stmt_TraitUseAdaptation_Alias($1[0], $1[1], $3, $4, $line, $docComment); }
    | trait_method_reference T_AS member_modifier ';'
          { $$ = new PHPParser_Node_Stmt_TraitUseAdaptation_Alias($1[0], $1[1], $3, null, $line, $docComment); }
    | trait_method_reference T_AS T_STRING ';'
          { $$ = new PHPParser_Node_Stmt_TraitUseAdaptation_Alias($1[0], $1[1], null, $3, $line, $docComment); }
;

trait_method_reference_fully_qualified:
      name T_PAAMAYIM_NEKUDOTAYIM T_STRING                  { $$ = array($1, $3); }
;
trait_method_reference:
      trait_method_reference_fully_qualified                { $$ = $1; }
    | T_STRING                                              { $$ = array(null, $1); }
;

method_body:
      ';' /* abstract method */                             { $$ = null; }
    | '{' inner_statement_list '}'                          { $$ = $2; }
;

variable_modifiers:
      non_empty_member_modifiers                            { $$ = $1; }
    | T_VAR                                                 { $$ = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC; }
;

method_modifiers:
      /* empty */                                           { $$ = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC; }
    | non_empty_member_modifiers                            { $$ = $1; }
;

non_empty_member_modifiers:
      member_modifier                                       { $$ = $1; }
    | non_empty_member_modifiers member_modifier            { PHPParser_Node_Stmt_Class::verifyModifier($1, $2); $$ = $1 | $2; }
;

member_modifier:
      T_PUBLIC                                              { $$ = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC; }
    | T_PROTECTED                                           { $$ = PHPParser_Node_Stmt_Class::MODIFIER_PROTECTED; }
    | T_PRIVATE                                             { $$ = PHPParser_Node_Stmt_Class::MODIFIER_PRIVATE; }
    | T_STATIC                                              { $$ = PHPParser_Node_Stmt_Class::MODIFIER_STATIC; }
    | T_ABSTRACT                                            { $$ = PHPParser_Node_Stmt_Class::MODIFIER_ABSTRACT; }
    | T_FINAL                                               { $$ = PHPParser_Node_Stmt_Class::MODIFIER_FINAL; }
;

property_declaration_list:
      property_declaration                                  { $$ = array($1); }
    | property_declaration_list ',' property_declaration    { $1[] = $3; $$ = $1; }
;

property_declaration:
      T_VARIABLE                                            { $$ = new PHPParser_Node_Stmt_PropertyProperty(substr($1, 1), null, $line, $docComment); }
    | T_VARIABLE '=' static_scalar                          { $$ = new PHPParser_Node_Stmt_PropertyProperty(substr($1, 1), $3, $line, $docComment); }
;

expr_list:
      expr_list ',' expr                                    { $1[] = $3; $$ = $1; }
    | expr                                                  { $$ = array($1); }
;

for_expr:
      /* empty */                                           { $$ = array(); }
    | expr_list                                             { $$ = $1; }
;

expr:
      variable                                              { $$ = $1; }
    | T_LIST '(' assignment_list ')' '=' expr               { $$ = new PHPParser_Node_Expr_AssignList($3, $6, $line, $docComment); }
    | variable '=' expr                                     { $$ = new PHPParser_Node_Expr_Assign($1, $3, $line, $docComment); }
    | variable '=' '&' variable                             { $$ = new PHPParser_Node_Expr_AssignRef($1, $4, $line, $docComment); }
    | variable '=' '&' new_expr                             { $$ = new PHPParser_Node_Expr_Assign($1, $4, $line, $docComment); } /* reference dropped intentially */
    | new_expr                                              { $$ = $1; }
    | T_CLONE expr                                          { $$ = new PHPParser_Node_Expr_Clone($2, $line, $docComment); }
    | variable T_PLUS_EQUAL expr                            { $$ = new PHPParser_Node_Expr_AssignPlus($1, $3, $line, $docComment); }
    | variable T_MINUS_EQUAL expr                           { $$ = new PHPParser_Node_Expr_AssignMinus($1, $3, $line, $docComment); }
    | variable T_MUL_EQUAL expr                             { $$ = new PHPParser_Node_Expr_AssignMul($1, $3, $line, $docComment); }
    | variable T_DIV_EQUAL expr                             { $$ = new PHPParser_Node_Expr_AssignDiv($1, $3, $line, $docComment); }
    | variable T_CONCAT_EQUAL expr                          { $$ = new PHPParser_Node_Expr_AssignConcat($1, $3, $line, $docComment); }
    | variable T_MOD_EQUAL expr                             { $$ = new PHPParser_Node_Expr_AssignMod($1, $3, $line, $docComment); }
    | variable T_AND_EQUAL expr                             { $$ = new PHPParser_Node_Expr_AssignBitwiseAnd($1, $3, $line, $docComment); }
    | variable T_OR_EQUAL expr                              { $$ = new PHPParser_Node_Expr_AssignBitwiseOr($1, $3, $line, $docComment); }
    | variable T_XOR_EQUAL expr                             { $$ = new PHPParser_Node_Expr_AssignBitwiseXor($1, $3, $line, $docComment); }
    | variable T_SL_EQUAL expr                              { $$ = new PHPParser_Node_Expr_AssignShiftLeft($1, $3, $line, $docComment); }
    | variable T_SR_EQUAL expr                              { $$ = new PHPParser_Node_Expr_AssignShiftRight($1, $3, $line, $docComment); }
    | variable T_INC                                        { $$ = new PHPParser_Node_Expr_PostInc($1, $line, $docComment); }
    | T_INC variable                                        { $$ = new PHPParser_Node_Expr_PreInc($2, $line, $docComment); }
    | variable T_DEC                                        { $$ = new PHPParser_Node_Expr_PostDec($1, $line, $docComment); }
    | T_DEC variable                                        { $$ = new PHPParser_Node_Expr_PreDec($2, $line, $docComment); }
    | expr T_BOOLEAN_OR expr                                { $$ = new PHPParser_Node_Expr_BooleanOr($1, $3, $line, $docComment); }
    | expr T_BOOLEAN_AND expr                               { $$ = new PHPParser_Node_Expr_BooleanAnd($1, $3, $line, $docComment); }
    | expr T_LOGICAL_OR expr                                { $$ = new PHPParser_Node_Expr_LogicalOr($1, $3, $line, $docComment); }
    | expr T_LOGICAL_AND expr                               { $$ = new PHPParser_Node_Expr_LogicalAnd($1, $3, $line, $docComment); }
    | expr T_LOGICAL_XOR expr                               { $$ = new PHPParser_Node_Expr_LogicalXor($1, $3, $line, $docComment); }
    | expr '|' expr                                         { $$ = new PHPParser_Node_Expr_BitwiseOr($1, $3, $line, $docComment); }
    | expr '&' expr                                         { $$ = new PHPParser_Node_Expr_BitwiseAnd($1, $3, $line, $docComment); }
    | expr '^' expr                                         { $$ = new PHPParser_Node_Expr_BitwiseXor($1, $3, $line, $docComment); }
    | expr '.' expr                                         { $$ = new PHPParser_Node_Expr_Concat($1, $3, $line, $docComment); }
    | expr '+' expr                                         { $$ = new PHPParser_Node_Expr_Plus($1, $3, $line, $docComment); }
    | expr '-' expr                                         { $$ = new PHPParser_Node_Expr_Minus($1, $3, $line, $docComment); }
    | expr '*' expr                                         { $$ = new PHPParser_Node_Expr_Mul($1, $3, $line, $docComment); }
    | expr '/' expr                                         { $$ = new PHPParser_Node_Expr_Div($1, $3, $line, $docComment); }
    | expr '%' expr                                         { $$ = new PHPParser_Node_Expr_Mod($1, $3, $line, $docComment); }
    | expr T_SL expr                                        { $$ = new PHPParser_Node_Expr_ShiftLeft($1, $3, $line, $docComment); }
    | expr T_SR expr                                        { $$ = new PHPParser_Node_Expr_ShiftRight($1, $3, $line, $docComment); }
    | '+' expr %prec T_INC                                  { $$ = new PHPParser_Node_Expr_UnaryPlus($2, $line, $docComment); }
    | '-' expr %prec T_INC                                  { $$ = new PHPParser_Node_Expr_UnaryMinus($2, $line, $docComment); }
    | '!' expr                                              { $$ = new PHPParser_Node_Expr_BooleanNot($2, $line, $docComment); }
    | '~' expr                                              { $$ = new PHPParser_Node_Expr_BitwiseNot($2, $line, $docComment); }
    | expr T_IS_IDENTICAL expr                              { $$ = new PHPParser_Node_Expr_Identical($1, $3, $line, $docComment); }
    | expr T_IS_NOT_IDENTICAL expr                          { $$ = new PHPParser_Node_Expr_NotIdentical($1, $3, $line, $docComment); }
    | expr T_IS_EQUAL expr                                  { $$ = new PHPParser_Node_Expr_Equal($1, $3, $line, $docComment); }
    | expr T_IS_NOT_EQUAL expr                              { $$ = new PHPParser_Node_Expr_NotEqual($1, $3, $line, $docComment); }
    | expr '<' expr                                         { $$ = new PHPParser_Node_Expr_Smaller($1, $3, $line, $docComment); }
    | expr T_IS_SMALLER_OR_EQUAL expr                       { $$ = new PHPParser_Node_Expr_SmallerOrEqual($1, $3, $line, $docComment); }
    | expr '>' expr                                         { $$ = new PHPParser_Node_Expr_Greater($1, $3, $line, $docComment); }
    | expr T_IS_GREATER_OR_EQUAL expr                       { $$ = new PHPParser_Node_Expr_GreaterOrEqual($1, $3, $line, $docComment); }
    | expr T_INSTANCEOF class_name_reference                { $$ = new PHPParser_Node_Expr_Instanceof($1, $3, $line, $docComment); }
    | '(' expr ')'                                          { $$ = $2; }
    | expr '?' expr ':' expr                                { $$ = new PHPParser_Node_Expr_Ternary($1, $3, $5, $line, $docComment); }
    | expr '?' ':' expr                                     { $$ = new PHPParser_Node_Expr_Ternary($1, null, $4, $line, $docComment); }
    | T_ISSET '(' variables_list ')'                        { $$ = new PHPParser_Node_Expr_Isset($3, $line, $docComment); }
    | T_EMPTY '(' variable ')'                              { $$ = new PHPParser_Node_Expr_Empty($3, $line, $docComment); }
    | T_INCLUDE expr                                        { $$ = new PHPParser_Node_Expr_Include($2, PHPParser_Node_Expr_Include::TYPE_INCLUDE, $line, $docComment); }
    | T_INCLUDE_ONCE expr                                   { $$ = new PHPParser_Node_Expr_Include($2, PHPParser_Node_Expr_Include::TYPE_INCLUDE_ONCE, $line, $docComment); }
    | T_EVAL '(' expr ')'                                   { $$ = new PHPParser_Node_Expr_Eval($3, $line, $docComment); }
    | T_REQUIRE expr                                        { $$ = new PHPParser_Node_Expr_Include($2, PHPParser_Node_Expr_Include::TYPE_REQUIRE, $line, $docComment); }
    | T_REQUIRE_ONCE expr                                   { $$ = new PHPParser_Node_Expr_Include($2, PHPParser_Node_Expr_Include::TYPE_REQUIRE_ONCE, $line, $docComment); }
    | T_INT_CAST expr                                       { $$ = new PHPParser_Node_Expr_Cast_Int($2, $line, $docComment); }
    | T_DOUBLE_CAST expr                                    { $$ = new PHPParser_Node_Expr_Cast_Double($2, $line, $docComment); }
    | T_STRING_CAST expr                                    { $$ = new PHPParser_Node_Expr_Cast_String($2, $line, $docComment); }
    | T_ARRAY_CAST expr                                     { $$ = new PHPParser_Node_Expr_Cast_Array($2, $line, $docComment); }
    | T_OBJECT_CAST expr                                    { $$ = new PHPParser_Node_Expr_Cast_Object($2, $line, $docComment); }
    | T_BOOL_CAST expr                                      { $$ = new PHPParser_Node_Expr_Cast_Bool($2, $line, $docComment); }
    | T_UNSET_CAST expr                                     { $$ = new PHPParser_Node_Expr_Cast_Unset($2, $line, $docComment); }
    | T_EXIT exit_expr                                      { $$ = new PHPParser_Node_Expr_Exit($2, $line, $docComment); }
    | '@' expr                                              { $$ = new PHPParser_Node_Expr_ErrorSuppress($2, $line, $docComment); }
    | scalar                                                { $$ = $1; }
    | T_ARRAY '(' array_pair_list ')'                       { $$ = new PHPParser_Node_Expr_Array($3, $line, $docComment); }
    | '[' array_pair_list ']'                               { $$ = new PHPParser_Node_Expr_Array($2, $line, $docComment); }
    | '`' backticks_expr '`'                                { $$ = new PHPParser_Node_Expr_ShellExec($2, $line, $docComment); }
    | T_PRINT expr                                          { $$ = new PHPParser_Node_Expr_Print($2, $line, $docComment); }
    | T_FUNCTION optional_ref '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
          { $$ = new PHPParser_Node_Expr_Closure(array('static' => false, 'byRef' => $2, 'params' => $4, 'uses' => $6, 'stmts' => $8), $line, $docComment); }
    | T_STATIC T_FUNCTION optional_ref '(' parameter_list ')' lexical_vars '{' inner_statement_list '}'
          { $$ = new PHPParser_Node_Expr_Closure(array('static' => true, 'byRef' => $3, 'params' => $5, 'uses' => $7, 'stmts' => $9), $line, $docComment); }
;

new_expr:
      T_NEW class_name_reference ctor_arguments             { $$ = new PHPParser_Node_Expr_New($2, $3, $line, $docComment); }
;

lexical_vars:
      /* empty */                                           { $$ = array(); }
    | T_USE '(' lexical_var_list ')'                        { $$ = $3; }
;

lexical_var_list:
      lexical_var                                           { $$ = array($1); }
    | lexical_var_list ',' lexical_var                      { $1[] = $3; $$ = $1; }
;

lexical_var:
      optional_ref T_VARIABLE                               { $$ = new PHPParser_Node_Expr_ClosureUse(substr($2, 1), $1, $line, $docComment); }
;

function_call:
      name '(' argument_list ')'                            { $$ = new PHPParser_Node_Expr_FuncCall($1, $3, $line, $docComment); }
    | class_name_or_var T_PAAMAYIM_NEKUDOTAYIM T_STRING '(' argument_list ')'
          { $$ = new PHPParser_Node_Expr_StaticCall($1, $3, $5, $line, $docComment); }
    | class_name_or_var T_PAAMAYIM_NEKUDOTAYIM '{' expr '}' '(' argument_list ')'
          { $$ = new PHPParser_Node_Expr_StaticCall($1, $4, $7, $line, $docComment); }
    | static_property '(' argument_list ')' {
            if ($1 instanceof PHPParser_Node_Expr_StaticPropertyFetch) {
                $$ = new PHPParser_Node_Expr_StaticCall($1->class, new PHPParser_Node_Expr_Variable($1->name, $line, $docComment), $3, $line, $docComment);
            } elseif ($1 instanceof PHPParser_Node_Expr_ArrayDimFetch) {
                $tmp = $1;
                while ($tmp->var instanceof PHPParser_Node_Expr_ArrayDimFetch) {
                    $tmp = $tmp->var;
                }

                $$ = new PHPParser_Node_Expr_StaticCall($tmp->var->class, $1, $3, $line, $docComment);
                $tmp->var = new PHPParser_Node_Expr_Variable($tmp->var->name, $line, $docComment);
            } else {
                throw new Exception;
            }
          }
    | variable_without_objects '(' argument_list ')'
          { $$ = new PHPParser_Node_Expr_FuncCall($1, $3, $line, $docComment); }
    | function_call '[' dim_offset ']'                      { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
      /* alternative array syntax missing intentionally */
;

class_name:
      T_STATIC                                              { $$ = new PHPParser_Node_Name('static', $line, $docComment); }
    | name                                                  { $$ = $1; }
;

name:
      namespace_name                                        { $$ = new PHPParser_Node_Name($1, $line, $docComment); }
    | T_NS_SEPARATOR namespace_name                         { $$ = new PHPParser_Node_Name_FullyQualified($2, $line, $docComment); }
    | T_NAMESPACE T_NS_SEPARATOR namespace_name             { $$ = new PHPParser_Node_Name_Relative($3, $line, $docComment); }
;

class_name_reference:
      class_name                                            { $$ = $1; }
    | dynamic_class_name_reference                          { $$ = $1; }
;

dynamic_class_name_reference:
      object_access_for_dcnr                                { $$ = $1; }
    | base_variable                                         { $$ = $1; }
;

class_name_or_var:
      class_name                                            { $$ = $1; }
    | reference_variable                                    { $$ = $1; }
;

object_access_for_dcnr:
    | base_variable T_OBJECT_OPERATOR object_property
          { $$ = new PHPParser_Node_Expr_PropertyFetch($1, $3, $line, $docComment); }
    | object_access_for_dcnr T_OBJECT_OPERATOR object_property
          { $$ = new PHPParser_Node_Expr_PropertyFetch($1, $3, $line, $docComment); }
    | object_access_for_dcnr '[' dim_offset ']'             { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
    | object_access_for_dcnr '{' expr '}'                   { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
;

exit_expr:
      /* empty */                                           { $$ = null; }
    | '(' ')'                                               { $$ = null; }
    | '(' expr ')'                                          { $$ = $2; }
;

backticks_expr:
      /* empty */                                           { $$ = array(); }
    | T_ENCAPSED_AND_WHITESPACE                             { $$ = array(PHPParser_Node_Scalar_String::parseEscapeSequences($1, '`')); }
    | encaps_list                                           { foreach ($1 as &$s) { if (is_string($s)) { $s = PHPParser_Node_Scalar_String::parseEscapeSequences($s, '`'); } }; $$ = $1; }
;

ctor_arguments:
      /* empty */                                           { $$ = array(); }
    | '(' argument_list ')'                                 { $$ = $2; }
;

common_scalar:
      T_LNUMBER                                             { $$ = new PHPParser_Node_Scalar_LNumber(PHPParser_Node_Scalar_LNumber::parse($1), $line, $docComment); }
    | T_DNUMBER                                             { $$ = new PHPParser_Node_Scalar_DNumber(PHPParser_Node_Scalar_DNumber::parse($1), $line, $docComment); }
    | T_CONSTANT_ENCAPSED_STRING                            { $$ = PHPParser_Node_Scalar_String::create($1, $line, $docComment); }
    | T_LINE                                                { $$ = new PHPParser_Node_Scalar_LineConst($line, $docComment); }
    | T_FILE                                                { $$ = new PHPParser_Node_Scalar_FileConst($line, $docComment); }
    | T_DIR                                                 { $$ = new PHPParser_Node_Scalar_DirConst($line, $docComment); }
    | T_CLASS_C                                             { $$ = new PHPParser_Node_Scalar_ClassConst($line, $docComment); }
    | T_TRAIT_C                                             { $$ = new PHPParser_Node_Scalar_TraitConst($line, $docComment); }
    | T_METHOD_C                                            { $$ = new PHPParser_Node_Scalar_MethodConst($line, $docComment); }
    | T_FUNC_C                                              { $$ = new PHPParser_Node_Scalar_FuncConst($line, $docComment); }
    | T_NS_C                                                { $$ = new PHPParser_Node_Scalar_NSConst($line, $docComment); }
    | T_START_HEREDOC T_ENCAPSED_AND_WHITESPACE T_END_HEREDOC
          { $$ = new PHPParser_Node_Scalar_String(PHPParser_Node_Scalar_String::parseDocString($1, $2), $line, $docComment); }
    | T_START_HEREDOC T_END_HEREDOC
          { $$ = new PHPParser_Node_Scalar_String('', $line, $docComment); }
    | name                                                  { $$ = new PHPParser_Node_Expr_ConstFetch($1, $line, $docComment); }
;

static_scalar: /* compile-time evaluated scalars */
      common_scalar                                         { $$ = $1; }
    | class_name T_PAAMAYIM_NEKUDOTAYIM T_STRING            { $$ = new PHPParser_Node_Expr_ClassConstFetch($1, $3, $line, $docComment); }
    | '+' static_scalar                                     { $$ = new PHPParser_Node_Expr_UnaryPlus($2, $line, $docComment); }
    | '-' static_scalar                                     { $$ = new PHPParser_Node_Expr_UnaryMinus($2, $line, $docComment); }
    | T_ARRAY '(' static_array_pair_list ')'                { $$ = new PHPParser_Node_Expr_Array($3, $line, $docComment); }
    | '[' static_array_pair_list ']'                        { $$ = new PHPParser_Node_Expr_Array($2, $line, $docComment); }
;

scalar:
      common_scalar                                         { $$ = $1; }
    | class_name_or_var T_PAAMAYIM_NEKUDOTAYIM T_STRING     { $$ = new PHPParser_Node_Expr_ClassConstFetch($1, $3, $line, $docComment); }
    | '"' encaps_list '"'
          { foreach ($2 as &$s) { if (is_string($s)) { $s = PHPParser_Node_Scalar_String::parseEscapeSequences($s, '"'); } }; $$ = new PHPParser_Node_Scalar_Encapsed($2, $line, $docComment); }
    | T_START_HEREDOC encaps_list T_END_HEREDOC
          { foreach ($2 as &$s) { if (is_string($s)) { $s = PHPParser_Node_Scalar_String::parseEscapeSequences($s, null); } } $s = preg_replace('~(\r\n|\n|\r)$~', '', $s); if ('' === $s) array_pop($2);; $$ = new PHPParser_Node_Scalar_Encapsed($2, $line, $docComment); }
;

static_array_pair_list:
      /* empty */                                           { $$ = array(); }
    | non_empty_static_array_pair_list optional_comma       { $$ = $1; }
;

optional_comma:
      /* empty */
    | ','
;

non_empty_static_array_pair_list:
      non_empty_static_array_pair_list ',' static_array_pair { $1[] = $3; $$ = $1; }
    | static_array_pair                                      { $$ = array($1); }
;

static_array_pair:
      static_scalar T_DOUBLE_ARROW static_scalar            { $$ = new PHPParser_Node_Expr_ArrayItem($3, $1, false, $line, $docComment); }
    | static_scalar                                         { $$ = new PHPParser_Node_Expr_ArrayItem($1, null, false, $line, $docComment); }
;

variable:
      object_access                                         { $$ = $1; }
    | base_variable                                         { $$ = $1; }
    | function_call                                         { $$ = $1; }
    | new_expr_array_deref                                  { $$ = $1; }
;

new_expr_array_deref:
      '(' new_expr ')' '[' dim_offset ']'                   { $$ = new PHPParser_Node_Expr_ArrayDimFetch($2, $5, $line, $docComment); }
    | new_expr_array_deref '[' dim_offset ']'               { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
      /* alternative array syntax missing intentionally */
;

object_access:
      variable_or_new_expr T_OBJECT_OPERATOR object_property
          { $$ = new PHPParser_Node_Expr_PropertyFetch($1, $3, $line, $docComment); }
    | variable_or_new_expr T_OBJECT_OPERATOR object_property '(' argument_list ')'
          { $$ = new PHPParser_Node_Expr_MethodCall($1, $3, $5, $line, $docComment); }
    | object_access '(' argument_list ')'                   { $$ = new PHPParser_Node_Expr_FuncCall($1, $3, $line, $docComment); }
    | object_access '[' dim_offset ']'                      { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
    | object_access '{' expr '}'                            { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
;

variable_or_new_expr:
      variable                                              { $$ = $1; }
    | '(' new_expr ')'                                      { $$ = $2; }
;

variable_without_objects:
      reference_variable                                    { $$ = $1; }
    | '$' variable_without_objects                          { $$ = new PHPParser_Node_Expr_Variable($2, $line, $docComment); }
;

base_variable:
      variable_without_objects                              { $$ = $1; }
    | static_property                                       { $$ = $1; }
;

static_property:
      class_name_or_var T_PAAMAYIM_NEKUDOTAYIM '$' reference_variable
          { $$ = new PHPParser_Node_Expr_StaticPropertyFetch($1, $4, $line, $docComment); }
    | static_property_with_arrays                           { $$ = $1; }
;

static_property_with_arrays:
      class_name_or_var T_PAAMAYIM_NEKUDOTAYIM T_VARIABLE
          { $$ = new PHPParser_Node_Expr_StaticPropertyFetch($1, substr($3, 1), $line, $docComment); }
    | class_name_or_var T_PAAMAYIM_NEKUDOTAYIM '$' '{' expr '}'
          { $$ = new PHPParser_Node_Expr_StaticPropertyFetch($1, $5, $line, $docComment); }
    | static_property_with_arrays '[' dim_offset ']'        { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
    | static_property_with_arrays '{' expr '}'              { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
;

reference_variable:
      reference_variable '[' dim_offset ']'                 { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
    | reference_variable '{' expr '}'                       { $$ = new PHPParser_Node_Expr_ArrayDimFetch($1, $3, $line, $docComment); }
    | T_VARIABLE                                            { $$ = new PHPParser_Node_Expr_Variable(substr($1, 1), $line, $docComment); }
    | '$' '{' expr '}'                                      { $$ = new PHPParser_Node_Expr_Variable($3, $line, $docComment); }
;

dim_offset:
      /* empty */                                           { $$ = null; }
    | expr                                                  { $$ = $1; }
;

object_property:
      T_STRING                                              { $$ = $1; }
    | '{' expr '}'                                          { $$ = $2; }
    | variable_without_objects                              { $$ = $1; }
;

assignment_list:
      assignment_list ',' assignment_list_element           { $1[] = $3; $$ = $1; }
    | assignment_list_element                               { $$ = array($1); }
;

assignment_list_element:
      variable                                              { $$ = $1; }
    | T_LIST '(' assignment_list ')'                        { $$ = $3; }
    | /* empty */                                           { $$ = null; }
;

array_pair_list:
      /* empty */                                           { $$ = array(); }
    | non_empty_array_pair_list optional_comma              { $$ = $1; }
;

non_empty_array_pair_list:
      non_empty_array_pair_list ',' array_pair              { $1[] = $3; $$ = $1; }
    | array_pair                                            { $$ = array($1); }
;

array_pair:
      expr T_DOUBLE_ARROW expr                              { $$ = new PHPParser_Node_Expr_ArrayItem($3, $1, false, $line, $docComment); }
    | expr                                                  { $$ = new PHPParser_Node_Expr_ArrayItem($1, null, false, $line, $docComment); }
    | expr T_DOUBLE_ARROW '&' variable                      { $$ = new PHPParser_Node_Expr_ArrayItem($4, $1, true, $line, $docComment); }
    | '&' variable                                          { $$ = new PHPParser_Node_Expr_ArrayItem($2, null, true, $line, $docComment); }
;

encaps_list:
      encaps_list encaps_var                                { $1[] = $2; $$ = $1; }
    | encaps_list T_ENCAPSED_AND_WHITESPACE                 { $1[] = $2; $$ = $1; }
    | encaps_var                                            { $$ = array($1); }
    | T_ENCAPSED_AND_WHITESPACE encaps_var                  { $$ = array($1, $2); }
;

encaps_var:
      T_VARIABLE                                            { $$ = new PHPParser_Node_Expr_Variable(substr($1, 1), $line, $docComment); }
    | T_VARIABLE '[' encaps_var_offset ']'                  { $$ = new PHPParser_Node_Expr_ArrayDimFetch(new PHPParser_Node_Expr_Variable(substr($1, 1), $line, $docComment), $3, $line, $docComment); }
    | T_VARIABLE T_OBJECT_OPERATOR T_STRING                 { $$ = new PHPParser_Node_Expr_PropertyFetch(new PHPParser_Node_Expr_Variable(substr($1, 1), $line, $docComment), $3, $line, $docComment); }
    | T_DOLLAR_OPEN_CURLY_BRACES expr '}'                   { $$ = new PHPParser_Node_Expr_Variable($2, $line, $docComment); }
    | T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '}'       { $$ = new PHPParser_Node_Expr_Variable($2, $line, $docComment); }
    | T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '[' expr ']' '}'
          { $$ = new PHPParser_Node_Expr_ArrayDimFetch(new PHPParser_Node_Expr_Variable($2, $line, $docComment), $4, $line, $docComment); }
    | T_CURLY_OPEN variable '}'                             { $$ = $2; }
;

encaps_var_offset:
      T_STRING                                              { $$ = new PHPParser_Node_Scalar_String($1, $line, $docComment); }
    | T_NUM_STRING                                          { $$ = new PHPParser_Node_Scalar_String($1, $line, $docComment); }
    | T_VARIABLE                                            { $$ = new PHPParser_Node_Expr_Variable(substr($1, 1), $line, $docComment); }
;

%%