34 lines
400 B
Go
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)
|
|
}
|
|
}
|