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

19 lines
268 B
Go

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