php-parser/node/expr/post_dec.go
2018-01-09 15:51:32 +02:00

33 lines
455 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type PostDec struct {
Variable node.Node
}
func NewPostDec(Variable node.Node) *PostDec {
return &PostDec{
Variable,
}
}
func (n *PostDec) Attributes() map[string]interface{} {
return nil
}
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)
}