php-parser/node/expr/cast/cast_int.go
2017-12-28 01:23:32 +02:00

34 lines
400 B
Go

package cast
import (
"github.com/z7zmey/php-parser/node"
)
func (n CastInt) Name() string {
return "CastInt"
}
type CastInt struct {
Cast
}
func NewCastInt(expr node.Node) node.Node {
return CastInt{
Cast{
"CastInt",
expr,
},
}
}
func (n CastInt) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
if n.expr != nil {
vv := v.Children("expr")
n.expr.Walk(vv)
}
}