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

19 lines
256 B
Go

package cast
import (
"github.com/z7zmey/php-parser/node"
)
type CastInt struct {
Cast
}
func NewCastInt(expr node.Node) node.Node {
return CastInt{
Cast{
node.SimpleNode{Name: "CastInt", Attributes: make(map[string]string)},
expr,
},
}
}