46 lines
717 B
Go
46 lines
717 B
Go
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) 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)
|
|
}
|