php-parser/node/stmt/do.go
2018-01-04 22:09:48 +02:00

53 lines
787 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Do struct {
attributes map[string]interface{}
position *node.Position
stmt node.Node
cond node.Node
}
func NewDo(stmt node.Node, cond node.Node) node.Node {
return &Do{
map[string]interface{}{},
nil,
stmt,
cond,
}
}
func (n Do) Attributes() map[string]interface{} {
return n.attributes
}
func (n Do) Position() *node.Position {
return n.position
}
func (n Do) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n Do) Walk(v node.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)
}