php-parser/node/name/name.go

41 lines
547 B
Go
Raw Normal View History

2017-12-05 21:36:28 +00:00
package name
import (
2017-12-27 17:55:58 +00:00
"github.com/z7zmey/php-parser/node"
2017-12-05 21:36:28 +00:00
)
2017-12-27 17:55:58 +00:00
type NameNode struct {
name string
2017-12-05 21:36:28 +00:00
parts []node.Node
}
func NewName(parts []node.Node) node.Node {
2017-12-27 17:55:58 +00:00
return NameNode{
"Name",
2017-12-05 21:36:28 +00:00
parts,
}
}
2017-12-29 15:20:24 +00:00
func (n NameNode) Name() string {
return "Name"
}
func (n NameNode) Attributes() map[string]interface{} {
return nil
}
2017-12-27 23:23:32 +00:00
func (n NameNode) Walk(v node.Visitor) {
2017-12-28 11:36:27 +00:00
if v.EnterNode(n) == false {
2017-12-27 23:23:32 +00:00
return
}
2017-12-27 17:55:58 +00:00
if n.parts != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("parts")
2017-12-27 17:55:58 +00:00
for _, nn := range n.parts {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-27 17:55:58 +00:00
}
2017-12-05 21:36:28 +00:00
}
2017-12-29 15:20:24 +00:00
v.LeaveNode(n)
2017-12-27 17:55:58 +00:00
}