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

19 lines
256 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
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,
},
}
}