35 lines
479 B
Go
35 lines
479 B
Go
package expr
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
func (n PostInc) Name() string {
|
|
return "PostInc"
|
|
}
|
|
|
|
type PostInc struct {
|
|
name string
|
|
variable node.Node
|
|
}
|
|
|
|
func NewPostInc(variableession node.Node) node.Node {
|
|
return PostInc{
|
|
"PostInc",
|
|
variableession,
|
|
}
|
|
}
|
|
|
|
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)
|
|
}
|