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

44 lines
630 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type ArrayItem struct {
ByRef bool
Key node.Node
Val node.Node
}
func NewArrayItem(Key node.Node, Val node.Node, ByRef bool) *ArrayItem {
return &ArrayItem{
ByRef,
Key,
Val,
}
}
func (n *ArrayItem) Attributes() map[string]interface{} {
return map[string]interface{}{
"ByRef": n.ByRef,
}
}
func (n *ArrayItem) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Key != nil {
vv := v.GetChildrenVisitor("Key")
n.Key.Walk(vv)
}
if n.Val != nil {
vv := v.GetChildrenVisitor("Val")
n.Val.Walk(vv)
}
v.LeaveNode(n)
}