66 lines
1022 B
Go
66 lines
1022 B
Go
package assign_op
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type Div struct {
|
|
AssignOp
|
|
}
|
|
|
|
func NewDiv(variable node.Node, expression node.Node) node.Node {
|
|
return Div{
|
|
AssignOp{
|
|
"AssignDiv",
|
|
map[string]interface{}{},
|
|
nil,
|
|
variable,
|
|
expression,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (n Div) Name() string {
|
|
return "Div"
|
|
}
|
|
|
|
func (n Div) Attributes() map[string]interface{} {
|
|
return n.attributes
|
|
}
|
|
|
|
func (n Div) Attribute(key string) interface{} {
|
|
return n.attributes[key]
|
|
}
|
|
|
|
func (n Div) SetAttribute(key string, value interface{}) node.Node {
|
|
n.attributes[key] = value
|
|
return n
|
|
}
|
|
|
|
func (n Div) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n Div) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
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)
|
|
}
|