php-parser/node/expr/cast/cast_unset.go
2017-12-27 19:55:58 +02:00

23 lines
262 B
Go

package cast
import (
"github.com/z7zmey/php-parser/node"
)
func (n CastUnset) Name() string {
return "CastUnset"
}
type CastUnset struct {
Cast
}
func NewCastUnset(expr node.Node) node.Node {
return CastUnset{
Cast{
"CastUnset",
expr,
},
}
}