php-parser/node/expr/list.go

35 lines
429 B
Go
Raw Normal View History

package expr
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n List) Name() string {
return "List"
}
type List struct {
2017-12-27 17:55:58 +00:00
name string
items []node.Node
}
func NewList(items []node.Node) node.Node {
return List{
2017-12-27 17:55:58 +00:00
"List",
items,
}
}
2017-12-27 23:23:32 +00:00
func (n List) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
if n.items != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("items")
for _, nn := range n.items {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
}
}
}