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

19 lines
260 B
Go

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