php-parser/node/expr/ternary.go
2017-12-29 17:20:24 +02:00

53 lines
817 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type Ternary struct {
name string
condition node.Node
ifTrue node.Node
ifFalse node.Node
}
func NewTernary(condition node.Node, ifTrue node.Node, ifFalse node.Node) node.Node {
return Ternary{
"Ternary",
condition,
ifTrue,
ifFalse,
}
}
func (n Ternary) Name() string {
return "Ternary"
}
func (n Ternary) Attributes() map[string]interface{} {
return nil
}
func (n Ternary) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.condition != nil {
vv := v.GetChildrenVisitor("condition")
n.condition.Walk(vv)
}
if n.ifTrue != nil {
vv := v.GetChildrenVisitor("ifTrue")
n.ifTrue.Walk(vv)
}
if n.ifFalse != nil {
vv := v.GetChildrenVisitor("ifFalse")
n.ifFalse.Walk(vv)
}
v.LeaveNode(n)
}