php-parser/node/expr/short_list.go
2018-01-09 15:51:32 +02:00

35 lines
484 B
Go

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