php-parser/node/expr/post_inc.go

33 lines
448 B
Go
Raw Normal View History

package expr
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n PostInc) Name() string {
return "PostInc"
}
type PostInc struct {
2017-12-27 17:55:58 +00:00
name string
variable node.Node
}
func NewPostInc(variableession node.Node) node.Node {
return PostInc{
2017-12-27 17:55:58 +00:00
"PostInc",
variableession,
}
}
2017-12-27 23:23:32 +00:00
func (n PostInc) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
if n.variable != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("variable")
n.variable.Walk(vv)
}
}