php-parser/node/stmt/else_if.go
2018-01-11 19:34:42 +02:00

45 lines
719 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
// ElseIf node
type ElseIf struct {
Cond node.Node
Stmt node.Node
}
// NewElseIf node constuctor
func NewElseIf(Cond node.Node, Stmt node.Node) *ElseIf {
return &ElseIf{
Cond,
Stmt,
}
}
// Attributes returns node attributes as map
func (n *ElseIf) Attributes() map[string]interface{} {
return nil
}
// Walk traverses nodes
// Walk is invoked recursively until v.EnterNode returns true
func (n *ElseIf) 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)
}