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

19 lines
268 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
package cast
import (
"github.com/z7zmey/php-parser/node"
)
type CastString struct {
Cast
}
func NewCastString(expr node.Node) node.Node {
return CastString{
Cast{
node.SimpleNode{Name: "CastString", Attributes: make(map[string]string)},
expr,
},
}
}