package stmt import ( "github.com/z7zmey/php-parser/node" ) type Throw struct { attributes map[string]interface{} position *node.Position expr node.Node } func NewThrow(expr node.Node) node.Node { return &Throw{ map[string]interface{}{}, nil, expr, } } func (n Throw) Attributes() map[string]interface{} { return n.attributes } func (n Throw) Position() *node.Position { return n.position } func (n Throw) SetPosition(p *node.Position) node.Node { n.position = p return n } func (n Throw) Walk(v node.Visitor) { if v.EnterNode(n) == false { return } if n.expr != nil { vv := v.GetChildrenVisitor("expr") n.expr.Walk(vv) } v.LeaveNode(n) }