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

44 lines
605 B
Go

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