php-parser/node/expr/binary_op/not_equal.go
2017-12-27 19:55:58 +02:00

24 lines
319 B
Go

package binary_op
import (
"github.com/z7zmey/php-parser/node"
)
func(n NotEqual) Name() string {
return "NotEqual"
}
type NotEqual struct {
BinaryOp
}
func NewNotEqual(variable node.Node, expression node.Node) node.Node {
return NotEqual{
BinaryOp{
"BinaryNotEqual",
variable,
expression,
},
}
}