51 lines
838 B
Go
51 lines
838 B
Go
package expr
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type ShortArray struct {
|
|
name string
|
|
attributes map[string]interface{}
|
|
items []node.Node
|
|
}
|
|
|
|
func NewShortArray(items []node.Node) node.Node {
|
|
return ShortArray{
|
|
"ShortArray",
|
|
map[string]interface{}{},
|
|
items,
|
|
}
|
|
}
|
|
|
|
func (n ShortArray) Name() string {
|
|
return "ShortArray"
|
|
}
|
|
|
|
func (n ShortArray) Attributes() map[string]interface{} {
|
|
return n.attributes
|
|
}
|
|
|
|
func (n ShortArray) Attribute(key string) interface{} {
|
|
return n.attributes[key]
|
|
}
|
|
|
|
func (n ShortArray) SetAttribute(key string, value interface{}) {
|
|
n.attributes[key] = value
|
|
}
|
|
|
|
func (n ShortArray) 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)
|
|
}
|