php-parser/node/stmt/break.go
2017-12-29 17:20:24 +02:00

39 lines
493 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Break struct {
name string
expr node.Node
}
func NewBreak(expr node.Node) node.Node {
return Break{
"Break",
expr,
}
}
func (n Break) Name() string {
return "Break"
}
func (n Break) Attributes() map[string]interface{} {
return nil
}
func (n Break) 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)
}