php-parser/node/expr/post_dec.go
2017-12-28 13:36:27 +02:00

35 lines
479 B
Go

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