48 lines
785 B
Go
48 lines
785 B
Go
package name
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
"github.com/z7zmey/php-parser/walker"
|
|
)
|
|
|
|
// Name node
|
|
type Name struct {
|
|
Parts []node.Node
|
|
}
|
|
|
|
// NewName node constructor
|
|
func NewName(Parts []node.Node) *Name {
|
|
return &Name{
|
|
Parts,
|
|
}
|
|
}
|
|
|
|
// Attributes returns node attributes as map
|
|
func (n *Name) Attributes() map[string]interface{} {
|
|
return nil
|
|
}
|
|
|
|
// Walk traverses nodes
|
|
// Walk is invoked recursively until v.EnterNode returns true
|
|
func (n *Name) Walk(v walker.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.Parts != nil {
|
|
vv := v.GetChildrenVisitor("Parts")
|
|
for _, nn := range n.Parts {
|
|
if nn != nil {
|
|
nn.Walk(vv)
|
|
}
|
|
}
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|
|
|
|
// GetParts returns the name parts
|
|
func (n *Name) GetParts() []node.Node {
|
|
return n.Parts
|
|
}
|