56 lines
873 B
Go
56 lines
873 B
Go
package stmt
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/comment"
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type Label struct {
|
|
position *node.Position
|
|
comments *[]comment.Comment
|
|
LabelName node.Node
|
|
}
|
|
|
|
func NewLabel(LabelName node.Node) *Label {
|
|
return &Label{
|
|
nil,
|
|
nil,
|
|
LabelName,
|
|
}
|
|
}
|
|
|
|
func (n *Label) Attributes() map[string]interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (n *Label) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n *Label) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
func (n *Label) Comments() *[]comment.Comment {
|
|
return n.comments
|
|
}
|
|
|
|
func (n *Label) SetComments(c *[]comment.Comment) node.Node {
|
|
n.comments = c
|
|
return n
|
|
}
|
|
|
|
func (n *Label) Walk(v node.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.LabelName != nil {
|
|
vv := v.GetChildrenVisitor("LabelName")
|
|
n.LabelName.Walk(vv)
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|