php-parser/node/expr/cast/cast_bool.go
2018-01-04 22:09:48 +02:00

46 lines
642 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{
map[string]interface{}{},
nil,
expr,
},
}
}
func (n CastBool) Attributes() map[string]interface{} {
return n.attributes
}
func (n CastBool) Position() *node.Position {
return n.position
}
func (n CastBool) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
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)
}