php-parser/node/expr/short_list.go
2017-12-28 01:23:32 +02:00

35 lines
464 B
Go

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