php-parser/node/expr/pre_inc.go
2018-01-04 22:09:48 +02:00

46 lines
710 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type PreInc struct {
attributes map[string]interface{}
position *node.Position
variable node.Node
}
func NewPreInc(variable node.Node) node.Node {
return &PreInc{
map[string]interface{}{},
nil,
variable,
}
}
func (n PreInc) Attributes() map[string]interface{} {
return n.attributes
}
func (n PreInc) Position() *node.Position {
return n.position
}
func (n PreInc) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n PreInc) 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)
}