php-parser/node/expr/exit.go
2018-01-09 00:30:28 +02:00

48 lines
679 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type Exit struct {
position *node.Position
Expr node.Node
IsDie bool
}
func NewExit(Expr node.Node, IsDie bool) *Exit {
return &Exit{
nil,
Expr,
IsDie,
}
}
func (n *Exit) Attributes() map[string]interface{} {
return map[string]interface{}{
"IsDie": n.IsDie,
}
}
func (n *Exit) Position() *node.Position {
return n.position
}
func (n *Exit) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n *Exit) 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)
}