57 lines
950 B
Go
57 lines
950 B
Go
package expr
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type ShortList struct {
|
|
attributes map[string]interface{}
|
|
position *node.Position
|
|
items []node.Node
|
|
}
|
|
|
|
func NewShortList(items []node.Node) node.Node {
|
|
return &ShortList{
|
|
map[string]interface{}{},
|
|
nil,
|
|
items,
|
|
}
|
|
}
|
|
|
|
func (n ShortList) Attributes() map[string]interface{} {
|
|
return n.attributes
|
|
}
|
|
|
|
func (n ShortList) Attribute(key string) interface{} {
|
|
return n.attributes[key]
|
|
}
|
|
|
|
func (n ShortList) SetAttribute(key string, value interface{}) node.Node {
|
|
n.attributes[key] = value
|
|
return n
|
|
}
|
|
|
|
func (n ShortList) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n ShortList) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
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)
|
|
}
|