php-parser/node/expr/exit.go
2018-01-02 14:11:08 +02:00

63 lines
975 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type Exit struct {
name string
attributes map[string]interface{}
position *node.Position
expr node.Node
}
func NewExit(expr node.Node, isDie bool) node.Node {
return Exit{
"Exit",
map[string]interface{}{
"isDie": isDie,
},
nil,
expr,
}
}
func (n Exit) Name() string {
return "Exit"
}
func (n Exit) Attributes() map[string]interface{} {
return n.attributes
}
func (n Exit) Attribute(key string) interface{} {
return n.attributes[key]
}
func (n Exit) SetAttribute(key string, value interface{}) node.Node {
n.attributes[key] = value
return n
}
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)
}