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

23 lines
262 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
package cast
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n CastUnset) Name() string {
return "CastUnset"
}
2017-12-12 21:26:00 +00:00
type CastUnset struct {
Cast
}
func NewCastUnset(expr node.Node) node.Node {
return CastUnset{
Cast{
2017-12-27 17:55:58 +00:00
"CastUnset",
2017-12-12 21:26:00 +00:00
expr,
},
}
}