php-parser/node/expr/short_list.go
2017-12-29 17:53:13 +02:00

43 lines
649 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type ShortList struct {
name string
attributes map[string]interface{}
items []node.Node
}
func NewShortList(items []node.Node) node.Node {
return ShortList{
"ShortList",
map[string]interface{}{},
items,
}
}
func (n ShortList) Name() string {
return "ShortList"
}
func (n ShortList) Attributes() map[string]interface{} {
return n.attributes
}
func (n ShortList) 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)
}