php-parser/node/expr/assign_op/div.go
2018-01-11 19:34:42 +02:00

46 lines
747 B
Go

package assign_op
import (
"github.com/z7zmey/php-parser/node"
)
// Div node
type Div struct {
AssignOp
}
// NewDiv node constuctor
func NewDiv(Variable node.Node, Expression node.Node) *Div {
return &Div{
AssignOp{
Variable,
Expression,
},
}
}
// Attributes returns node attributes as map
func (n *Div) Attributes() map[string]interface{} {
return nil
}
// Walk traverses nodes
// Walk is invoked recursively until v.EnterNode returns true
func (n *Div) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Variable != nil {
vv := v.GetChildrenVisitor("Variable")
n.Variable.Walk(vv)
}
if n.Expression != nil {
vv := v.GetChildrenVisitor("Expression")
n.Expression.Walk(vv)
}
v.LeaveNode(n)
}