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

55 lines
893 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type Ternary struct {
name string
attributes map[string]interface{}
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",
map[string]interface{}{},
condition,
ifTrue,
ifFalse,
}
}
func (n Ternary) Name() string {
return "Ternary"
}
func (n Ternary) Attributes() map[string]interface{} {
return n.attributes
}
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)
}