php-parser/node/expr/array_item.go
2017-12-29 17:20:24 +02:00

50 lines
749 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type ArrayItem struct {
name string
attributes map[string]interface{}
key node.Node
val node.Node
}
func NewArrayItem(key node.Node, val node.Node, byRef bool) node.Node {
return ArrayItem{
"ArrayItem",
map[string]interface{}{
"byRef": byRef,
},
key,
val,
}
}
func (n ArrayItem) Name() string {
return "ArrayItem"
}
func (n ArrayItem) Attributes() map[string]interface{} {
return nil
}
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)
}