55 lines
870 B
Go
55 lines
870 B
Go
package binary_op
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type NotEqual struct {
|
|
BinaryOp
|
|
}
|
|
|
|
func NewNotEqual(variable node.Node, expression node.Node) node.Node {
|
|
return NotEqual{
|
|
BinaryOp{
|
|
"BinaryNotEqual",
|
|
map[string]interface{}{},
|
|
variable,
|
|
expression,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (n NotEqual) Name() string {
|
|
return "NotEqual"
|
|
}
|
|
|
|
func (n NotEqual) Attributes() map[string]interface{} {
|
|
return n.attributes
|
|
}
|
|
|
|
func (n NotEqual) Attribute(key string) interface{} {
|
|
return n.attributes[key]
|
|
}
|
|
|
|
func (n NotEqual) SetAttribute(key string, value interface{}) {
|
|
n.attributes[key] = value
|
|
}
|
|
|
|
func (n NotEqual) Walk(v node.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.left != nil {
|
|
vv := v.GetChildrenVisitor("left")
|
|
n.left.Walk(vv)
|
|
}
|
|
|
|
if n.right != nil {
|
|
vv := v.GetChildrenVisitor("right")
|
|
n.right.Walk(vv)
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|