package expr import ( "github.com/z7zmey/php-parser/node" ) type PostInc struct { attributes map[string]interface{} position *node.Position variable node.Node } func NewPostInc(variable node.Node) node.Node { return PostInc{ map[string]interface{}{}, nil, variable, } } func (n PostInc) Attributes() map[string]interface{} { return n.attributes } func (n PostInc) Attribute(key string) interface{} { return n.attributes[key] } func (n PostInc) SetAttribute(key string, value interface{}) node.Node { n.attributes[key] = value return n } func (n PostInc) Position() *node.Position { return n.position } func (n PostInc) SetPosition(p *node.Position) node.Node { n.position = p return n } func (n PostInc) Walk(v node.Visitor) { if v.EnterNode(n) == false { return } if n.variable != nil { vv := v.GetChildrenVisitor("variable") n.variable.Walk(vv) } v.LeaveNode(n) }