php-parser/node/expr/cast/cast_bool.go
2017-12-31 11:57:55 +02:00

49 lines
724 B
Go

package cast
import (
"github.com/z7zmey/php-parser/node"
)
type CastBool struct {
Cast
}
func NewCastBool(expr node.Node) node.Node {
return CastBool{
Cast{
"CastBool",
map[string]interface{}{},
expr,
},
}
}
func (n CastBool) Name() string {
return "CastBool"
}
func (n CastBool) Attributes() map[string]interface{} {
return n.attributes
}
func (n CastBool) Attribute(key string) interface{} {
return n.attributes[key]
}
func (n CastBool) SetAttribute(key string, value interface{}) {
n.attributes[key] = value
}
func (n CastBool) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.expr != nil {
vv := v.GetChildrenVisitor("expr")
n.expr.Walk(vv)
}
v.LeaveNode(n)
}