package name import ( "github.com/z7zmey/php-parser/node" ) type NameNode struct { name string attributes map[string]interface{} position *node.Position parts []node.Node } func NewName(parts []node.Node) node.Node { return NameNode{ "Name", map[string]interface{}{}, nil, parts, } } func (n NameNode) Name() string { return "Name" } func (n NameNode) Attributes() map[string]interface{} { return n.attributes } func (n NameNode) Attribute(key string) interface{} { return n.attributes[key] } func (n NameNode) SetAttribute(key string, value interface{}) { n.attributes[key] = value } func (n NameNode) Position() *node.Position { return n.position } func (n NameNode) SetPosition(p *node.Position) node.Node { n.position = p return n } func (n NameNode) 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) }