php-parser/node/expr/list.go
2017-12-28 13:36:27 +02:00

37 lines
460 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
func (n List) Name() string {
return "List"
}
type List struct {
name string
items []node.Node
}
func NewList(items []node.Node) node.Node {
return List{
"List",
items,
}
}
func (n List) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.items != nil {
vv := v.GetChildrenVisitor("items")
for _, nn := range n.items {
nn.Walk(vv)
}
}
v.LeaveNode(n)
}