php-parser/node/expr/binary_op/not_equal.go

20 lines
324 B
Go
Raw Normal View History

2017-12-12 21:26:00 +00:00
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{
node.SimpleNode{Name: "BinaryNotEqual", Attributes: make(map[string]string)},
variable,
expression,
},
}
}