for node
This commit is contained in:
parent
21e158284f
commit
93a46477ed
59
node/stmt/for.go
Normal file
59
node/stmt/for.go
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
package stmt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
|
||||||
|
"github.com/z7zmey/php-parser/node"
|
||||||
|
"github.com/z7zmey/php-parser/token"
|
||||||
|
)
|
||||||
|
|
||||||
|
type For struct {
|
||||||
|
node.SimpleNode
|
||||||
|
token token.Token
|
||||||
|
init []node.Node
|
||||||
|
cond []node.Node
|
||||||
|
loop []node.Node
|
||||||
|
stmt node.Node
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewFor(token token.Token, init []node.Node, cond []node.Node, loop []node.Node, stmt node.Node) node.Node {
|
||||||
|
return For{
|
||||||
|
node.SimpleNode{Name: "For", Attributes: make(map[string]string)},
|
||||||
|
token,
|
||||||
|
init,
|
||||||
|
cond,
|
||||||
|
loop,
|
||||||
|
stmt,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (n For) Print(out io.Writer, indent string) {
|
||||||
|
fmt.Fprintf(out, "\n%v%v [%d %d] %q", indent, n.Name, n.token.StartLine, n.token.EndLine, n.token.Value)
|
||||||
|
|
||||||
|
if n.init != nil {
|
||||||
|
fmt.Fprintf(out, "\n%vinit:", indent+" ")
|
||||||
|
for _, nn := range n.init {
|
||||||
|
nn.Print(out, indent+" ")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if n.cond != nil {
|
||||||
|
fmt.Fprintf(out, "\n%vcond:", indent+" ")
|
||||||
|
for _, nn := range n.cond {
|
||||||
|
nn.Print(out, indent+" ")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if n.loop != nil {
|
||||||
|
fmt.Fprintf(out, "\n%vloop:", indent+" ")
|
||||||
|
for _, nn := range n.loop {
|
||||||
|
nn.Print(out, indent+" ")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if n.stmt != nil {
|
||||||
|
fmt.Fprintf(out, "\n%vstmt:", indent+" ")
|
||||||
|
n.stmt.Print(out, indent+" ")
|
||||||
|
}
|
||||||
|
}
|
892
parser/parser.go
892
parser/parser.go
File diff suppressed because it is too large
Load Diff
@ -198,11 +198,11 @@ func Parse(src io.Reader, fName string) node.Node {
|
|||||||
%type <node> callable_expr callable_variable static_member new_variable
|
%type <node> callable_expr callable_variable static_member new_variable
|
||||||
%type <node> encaps_var encaps_var_offset isset_variables
|
%type <node> encaps_var encaps_var_offset isset_variables
|
||||||
%type <node> top_statement_list use_declarations inner_statement_list if_stmt
|
%type <node> top_statement_list use_declarations inner_statement_list if_stmt
|
||||||
%type <node> alt_if_stmt for_exprs switch_case_list global_var_list static_var_list
|
%type <node> alt_if_stmt switch_case_list global_var_list static_var_list
|
||||||
%type <node> unset_variables parameter_list class_statement_list
|
%type <node> unset_variables parameter_list class_statement_list
|
||||||
%type <node> implements_list case_list if_stmt_without_else
|
%type <node> implements_list case_list if_stmt_without_else
|
||||||
%type <node> non_empty_parameter_list argument_list non_empty_argument_list property_list
|
%type <node> non_empty_parameter_list argument_list non_empty_argument_list property_list
|
||||||
%type <node> class_const_decl name_list trait_adaptations method_body non_empty_for_exprs
|
%type <node> class_const_decl name_list trait_adaptations method_body
|
||||||
%type <node> ctor_arguments alt_if_stmt_without_else trait_adaptation_list lexical_vars
|
%type <node> ctor_arguments alt_if_stmt_without_else trait_adaptation_list lexical_vars
|
||||||
%type <node> lexical_var_list
|
%type <node> lexical_var_list
|
||||||
%type <node> array_pair non_empty_array_pair_list array_pair_list possible_array_pair
|
%type <node> array_pair non_empty_array_pair_list array_pair_list possible_array_pair
|
||||||
@ -214,7 +214,7 @@ func Parse(src io.Reader, fName string) node.Node {
|
|||||||
|
|
||||||
%type <strings> class_modifiers
|
%type <strings> class_modifiers
|
||||||
%type <list> encaps_list backticks_expr namespace_name catch_name_list catch_list class_const_list
|
%type <list> encaps_list backticks_expr namespace_name catch_name_list catch_list class_const_list
|
||||||
%type <list> const_list echo_expr_list
|
%type <list> const_list echo_expr_list for_exprs non_empty_for_exprs
|
||||||
|
|
||||||
%%
|
%%
|
||||||
|
|
||||||
@ -364,13 +364,7 @@ statement:
|
|||||||
}
|
}
|
||||||
| T_DO statement T_WHILE '(' expr ')' ';' { $$ = stmt.NewDo($1, $2, $5) }
|
| T_DO statement T_WHILE '(' expr ')' ';' { $$ = stmt.NewDo($1, $2, $5) }
|
||||||
| T_FOR '(' for_exprs ';' for_exprs ';' for_exprs ')' for_statement
|
| T_FOR '(' for_exprs ';' for_exprs ';' for_exprs ')' for_statement
|
||||||
{
|
{ $$ = stmt.NewFor($1, $3, $5, $7, $9) }
|
||||||
$$ = node.NewSimpleNode("For").
|
|
||||||
Append(node.NewSimpleNode("expr1").Append($3)).
|
|
||||||
Append(node.NewSimpleNode("expr2").Append($5)).
|
|
||||||
Append(node.NewSimpleNode("expr3").Append($7)).
|
|
||||||
Append(node.NewSimpleNode("stmt").Append($9))
|
|
||||||
}
|
|
||||||
| T_SWITCH '(' expr ')' switch_case_list { $$ = node.NewSimpleNode("Switch").Append(node.NewSimpleNode("expr").Append($3)).Append($5); }
|
| T_SWITCH '(' expr ')' switch_case_list { $$ = node.NewSimpleNode("Switch").Append(node.NewSimpleNode("expr").Append($3)).Append($5); }
|
||||||
| T_BREAK optional_expr ';' { $$ = stmt.NewBreak($1, $2) }
|
| T_BREAK optional_expr ';' { $$ = stmt.NewBreak($1, $2) }
|
||||||
| T_CONTINUE optional_expr ';' { $$ = stmt.NewContinue($1, $2) }
|
| T_CONTINUE optional_expr ';' { $$ = stmt.NewContinue($1, $2) }
|
||||||
@ -797,12 +791,12 @@ echo_expr:
|
|||||||
;
|
;
|
||||||
|
|
||||||
for_exprs:
|
for_exprs:
|
||||||
/* empty */ { $$ = node.NewSimpleNode(""); }
|
/* empty */ { $$ = nil; }
|
||||||
| non_empty_for_exprs { $$ = $1; }
|
| non_empty_for_exprs { $$ = $1; }
|
||||||
;
|
;
|
||||||
non_empty_for_exprs:
|
non_empty_for_exprs:
|
||||||
non_empty_for_exprs ',' expr { $$ = $1.Append($3) }
|
non_empty_for_exprs ',' expr { $$ = append($1, $3) }
|
||||||
| expr { $$ = node.NewSimpleNode("ExpressionList").Append($1) }
|
| expr { $$ = []node.Node{$1} }
|
||||||
;
|
;
|
||||||
|
|
||||||
anonymous_class:
|
anonymous_class:
|
||||||
|
Loading…
Reference in New Issue
Block a user