2017-12-12 21:26:00 +00:00
|
|
|
package binary_op
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
)
|
|
|
|
|
2017-12-27 17:55:58 +00:00
|
|
|
func(n NotIdentical) Name() string {
|
|
|
|
return "NotIdentical"
|
|
|
|
}
|
|
|
|
|
2017-12-12 21:26:00 +00:00
|
|
|
type NotIdentical struct {
|
|
|
|
BinaryOp
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewNotIdentical(variable node.Node, expression node.Node) node.Node {
|
|
|
|
return NotIdentical{
|
|
|
|
BinaryOp{
|
2017-12-27 17:55:58 +00:00
|
|
|
"BinaryNotIdentical",
|
2017-12-12 21:26:00 +00:00
|
|
|
variable,
|
|
|
|
expression,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|