56 lines
811 B
Go
56 lines
811 B
Go
package cast
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/comment"
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type CastInt struct {
|
|
Cast
|
|
}
|
|
|
|
func NewCastInt(Expr node.Node) *CastInt {
|
|
return &CastInt{
|
|
Cast{
|
|
nil,
|
|
nil,
|
|
Expr,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (n *CastInt) Attributes() map[string]interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (n *CastInt) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n *CastInt) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
func (n *CastInt) Comments() []comment.Comment {
|
|
return n.comments
|
|
}
|
|
|
|
func (n *CastInt) SetComments(c []comment.Comment) node.Node {
|
|
n.comments = c
|
|
return n
|
|
}
|
|
|
|
func (n *CastInt) 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)
|
|
}
|