class FilterLexer::NEQOperator

An relational negative equality operator

Public Instance Methods

sql() click to toggle source
# File lib/filter_lexer/formatters/sql.rb, line 86
def sql
        case parent.data
                when BooleanLiteral, NullLiteral
                        return 'IS NOT'
                else
                        return '<>'
        end
end