66 lines
939 B
Go
66 lines
939 B
Go
package stmt
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type For struct {
|
|
name string
|
|
init []node.Node
|
|
cond []node.Node
|
|
loop []node.Node
|
|
stmt node.Node
|
|
}
|
|
|
|
func NewFor(init []node.Node, cond []node.Node, loop []node.Node, stmt node.Node) node.Node {
|
|
return For{
|
|
"For",
|
|
init,
|
|
cond,
|
|
loop,
|
|
stmt,
|
|
}
|
|
}
|
|
|
|
func (n For) Name() string {
|
|
return "For"
|
|
}
|
|
|
|
func (n For) Attributes() map[string]interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (n For) Walk(v node.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.init != nil {
|
|
vv := v.GetChildrenVisitor("init")
|
|
for _, nn := range n.init {
|
|
nn.Walk(vv)
|
|
}
|
|
}
|
|
|
|
if n.cond != nil {
|
|
vv := v.GetChildrenVisitor("cond")
|
|
for _, nn := range n.cond {
|
|
nn.Walk(vv)
|
|
}
|
|
}
|
|
|
|
if n.loop != nil {
|
|
vv := v.GetChildrenVisitor("loop")
|
|
for _, nn := range n.loop {
|
|
nn.Walk(vv)
|
|
}
|
|
}
|
|
|
|
if n.stmt != nil {
|
|
vv := v.GetChildrenVisitor("stmt")
|
|
n.stmt.Walk(vv)
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|