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

33 lines
455 B
Go

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