56 lines
838 B
Go
56 lines
838 B
Go
package stmt
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/comment"
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type Goto struct {
|
|
position *node.Position
|
|
comments *[]comment.Comment
|
|
Label node.Node
|
|
}
|
|
|
|
func NewGoto(Label node.Node) node.Node {
|
|
return &Goto{
|
|
nil,
|
|
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) Comments() *[]comment.Comment {
|
|
return n.comments
|
|
}
|
|
|
|
func (n Goto) SetComments(c *[]comment.Comment) node.Node {
|
|
n.comments = c
|
|
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)
|
|
}
|