php-parser/node/name/name.go
2018-01-08 21:32:57 +02:00

58 lines
875 B
Go

package name
import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node"
)
type Name struct {
position *node.Position
comments *[]comment.Comment
Parts []node.Node
}
func NewName(Parts []node.Node) *Name {
return &Name{
nil,
nil,
Parts,
}
}
func (n *Name) Attributes() map[string]interface{} {
return nil
}
func (n *Name) Position() *node.Position {
return n.position
}
func (n *Name) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n *Name) Comments() *[]comment.Comment {
return n.comments
}
func (n *Name) SetComments(c *[]comment.Comment) node.Node {
n.comments = c
return n
}
func (n *Name) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Parts != nil {
vv := v.GetChildrenVisitor("Parts")
for _, nn := range n.Parts {
nn.Walk(vv)
}
}
v.LeaveNode(n)
}