slit While and AltWhile
This commit is contained in:
parent
1c6633e47d
commit
d498ea9863
45
node/stmt/n_alt_while.go
Normal file
45
node/stmt/n_alt_while.go
Normal file
@ -0,0 +1,45 @@
|
||||
package stmt
|
||||
|
||||
import (
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
"github.com/z7zmey/php-parser/walker"
|
||||
)
|
||||
|
||||
// AltWhile node
|
||||
type AltWhile struct {
|
||||
Cond node.Node
|
||||
Stmt node.Node
|
||||
}
|
||||
|
||||
// NewAltWhile node constuctor
|
||||
func NewAltWhile(Cond node.Node, Stmt node.Node) *AltWhile {
|
||||
return &AltWhile{
|
||||
Cond,
|
||||
Stmt,
|
||||
}
|
||||
}
|
||||
|
||||
// Attributes returns node attributes as map
|
||||
func (n *AltWhile) Attributes() map[string]interface{} {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Walk traverses nodes
|
||||
// Walk is invoked recursively until v.EnterNode returns true
|
||||
func (n *AltWhile) Walk(v walker.Visitor) {
|
||||
if v.EnterNode(n) == false {
|
||||
return
|
||||
}
|
||||
|
||||
if n.Cond != nil {
|
||||
vv := v.GetChildrenVisitor("Cond")
|
||||
n.Cond.Walk(vv)
|
||||
}
|
||||
|
||||
if n.Stmt != nil {
|
||||
vv := v.GetChildrenVisitor("Stmt")
|
||||
n.Stmt.Walk(vv)
|
||||
}
|
||||
|
||||
v.LeaveNode(n)
|
||||
}
|
@ -435,6 +435,14 @@ var nodesToTest = []struct {
|
||||
[]string{"Cond", "Stmt"},
|
||||
map[string]interface{}{},
|
||||
},
|
||||
{
|
||||
&stmt.AltWhile{
|
||||
Cond: &expr.Variable{},
|
||||
Stmt: &stmt.StmtList{},
|
||||
},
|
||||
[]string{"Cond", "Stmt"},
|
||||
map[string]interface{}{},
|
||||
},
|
||||
{
|
||||
&stmt.StmtList{
|
||||
Stmts: []node.Node{&stmt.Expression{}},
|
||||
|
@ -65,7 +65,7 @@ func TestBreak(t *testing.T) {
|
||||
|
||||
expected := &stmt.StmtList{
|
||||
Stmts: []node.Node{
|
||||
&stmt.While{
|
||||
&stmt.AltWhile{
|
||||
Cond: &scalar.Lnumber{Value: "1"},
|
||||
Stmt: &stmt.StmtList{
|
||||
Stmts: []node.Node{
|
||||
|
@ -59,3 +59,8 @@ type simpleIndirectReference struct {
|
||||
all []*expr.Variable
|
||||
last *expr.Variable
|
||||
}
|
||||
|
||||
type altSyntaxNode struct {
|
||||
node node.Node
|
||||
isAlt bool
|
||||
}
|
||||
|
1322
php5/php5.go
1322
php5/php5.go
File diff suppressed because it is too large
Load Diff
19
php5/php5.y
19
php5/php5.y
@ -26,7 +26,7 @@ import (
|
||||
foreachVariable foreachVariable
|
||||
nodesWithEndToken *nodesWithEndToken
|
||||
simpleIndirectReference simpleIndirectReference
|
||||
// str string
|
||||
altSyntaxNode altSyntaxNode
|
||||
}
|
||||
|
||||
%type <token> $unk
|
||||
@ -203,7 +203,7 @@ import (
|
||||
%type <node> variable_name variable_without_objects dynamic_class_name_reference new_expr class_name_reference static_member
|
||||
%type <node> function_call fully_qualified_class_name combined_scalar combined_scalar_offset general_constant parenthesis_expr
|
||||
%type <node> exit_expr yield_expr function_declaration_statement class_declaration_statement constant_declaration
|
||||
%type <node> else_single new_else_single while_statement for_statement unset_variable foreach_statement declare_statement
|
||||
%type <node> else_single new_else_single for_statement unset_variable foreach_statement declare_statement
|
||||
%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
|
||||
%type <node> trait_use_statement function_call_parameter trait_adaptation_statement trait_precedence trait_alias
|
||||
@ -227,6 +227,7 @@ import (
|
||||
%type <foreachVariable> foreach_variable foreach_optional_arg
|
||||
%type <nodesWithEndToken> ctor_arguments function_call_parameter_list switch_case_list method_body trait_adaptations
|
||||
%type <boolWithToken> is_reference is_variadic
|
||||
%type <altSyntaxNode> while_statement
|
||||
|
||||
%%
|
||||
|
||||
@ -602,8 +603,12 @@ unticked_statement:
|
||||
}
|
||||
| T_WHILE parenthesis_expr while_statement
|
||||
{
|
||||
$$ = stmt.NewWhile($2, $3)
|
||||
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $3))
|
||||
if ($3.isAlt) {
|
||||
$$ = stmt.NewAltWhile($2, $3.node)
|
||||
} else {
|
||||
$$ = stmt.NewWhile($2, $3.node)
|
||||
}
|
||||
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $3.node))
|
||||
comments.AddComments($$, $1.Comments())
|
||||
}
|
||||
| T_DO statement T_WHILE parenthesis_expr ';'
|
||||
@ -1109,11 +1114,11 @@ case_separator:
|
||||
|
||||
while_statement:
|
||||
statement
|
||||
{ $$ = $1 }
|
||||
{ $$ = altSyntaxNode{$1, false} }
|
||||
| ':' inner_statement_list T_ENDWHILE ';'
|
||||
{
|
||||
$$ = stmt.NewStmtList($2)
|
||||
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
||||
$$ = altSyntaxNode{stmt.NewStmtList($2), true}
|
||||
positions.AddPosition($$.node, positionBuilder.NewTokensPosition($1, $4))
|
||||
}
|
||||
;
|
||||
|
||||
|
@ -789,7 +789,7 @@ CAD;
|
||||
},
|
||||
},
|
||||
},
|
||||
&stmt.While{
|
||||
&stmt.AltWhile{
|
||||
Cond: &scalar.Lnumber{Value: "1"},
|
||||
Stmt: &stmt.StmtList{
|
||||
Stmts: []node.Node{
|
||||
|
@ -50,3 +50,8 @@ type boolWithToken struct {
|
||||
value bool
|
||||
token *token.Token
|
||||
}
|
||||
|
||||
type altSyntaxNode struct {
|
||||
node node.Node
|
||||
isAlt bool
|
||||
}
|
||||
|
1250
php7/php7.go
1250
php7/php7.go
File diff suppressed because it is too large
Load Diff
21
php7/php7.y
21
php7/php7.y
@ -26,6 +26,7 @@ import (
|
||||
foreachVariable foreachVariable
|
||||
nodesWithEndToken *nodesWithEndToken
|
||||
str string
|
||||
altSyntaxNode altSyntaxNode
|
||||
}
|
||||
|
||||
%type <token> $unk
|
||||
@ -207,7 +208,7 @@ import (
|
||||
%type <node> group_use_declaration inline_use_declaration
|
||||
%type <node> mixed_group_use_declaration use_declaration unprefixed_use_declaration
|
||||
%type <node> const_decl inner_statement
|
||||
%type <node> expr optional_expr while_statement for_statement
|
||||
%type <node> expr optional_expr for_statement
|
||||
%type <node> foreach_statement declare_statement finally_statement unset_variable variable
|
||||
%type <node> extends_from parameter optional_type argument expr_without_variable global_var
|
||||
%type <node> static_var class_statement trait_adaptation trait_precedence trait_alias
|
||||
@ -245,6 +246,8 @@ import (
|
||||
|
||||
%type <str> backup_doc_comment
|
||||
|
||||
%type <altSyntaxNode> while_statement
|
||||
|
||||
%%
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
@ -523,8 +526,12 @@ statement:
|
||||
| alt_if_stmt { $$ = $1; }
|
||||
| T_WHILE '(' expr ')' while_statement
|
||||
{
|
||||
$$ = stmt.NewWhile($3, $5)
|
||||
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $5))
|
||||
if ($5.isAlt) {
|
||||
$$ = stmt.NewAltWhile($3, $5.node)
|
||||
} else {
|
||||
$$ = stmt.NewWhile($3, $5.node)
|
||||
}
|
||||
positions.AddPosition($$, positionBuilder.NewTokenNodePosition($1, $5.node))
|
||||
comments.AddComments($$, $1.Comments())
|
||||
}
|
||||
| T_DO statement T_WHILE '(' expr ')' ';'
|
||||
@ -890,12 +897,12 @@ case_separator:
|
||||
;
|
||||
|
||||
while_statement:
|
||||
statement { $$ = $1; }
|
||||
statement
|
||||
{ $$ = altSyntaxNode{$1, false} }
|
||||
| ':' inner_statement_list T_ENDWHILE ';'
|
||||
{
|
||||
$$ = stmt.NewStmtList($2)
|
||||
positions.AddPosition($$, positionBuilder.NewTokensPosition($1, $4))
|
||||
comments.AddComments($$, $1.Comments())
|
||||
$$ = altSyntaxNode{stmt.NewStmtList($2), true}
|
||||
positions.AddPosition($$.node, positionBuilder.NewTokensPosition($1, $4))
|
||||
}
|
||||
;
|
||||
|
||||
|
@ -854,7 +854,7 @@ CAD;
|
||||
},
|
||||
},
|
||||
},
|
||||
&stmt.While{
|
||||
&stmt.AltWhile{
|
||||
Cond: &scalar.Lnumber{Value: "1"},
|
||||
Stmt: &stmt.StmtList{
|
||||
Stmts: []node.Node{
|
||||
|
Loading…
Reference in New Issue
Block a user