php-parser/node/expr/cast/cast_unset.go

34 lines
414 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
package cast
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n CastUnset) Name() string {
return "CastUnset"
}
2017-12-12 21:26:00 +00:00
type CastUnset struct {
Cast
}
func NewCastUnset(expr node.Node) node.Node {
return CastUnset{
Cast{
2017-12-27 17:55:58 +00:00
"CastUnset",
2017-12-12 21:26:00 +00:00
expr,
},
}
}
2017-12-27 23:23:32 +00:00
func (n CastUnset) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
if n.expr != nil {
vv := v.Children("expr")
n.expr.Walk(vv)
}
}