class DDQL::TokenType::NullOperators

Public Instance Methods

as_hash(data) click to toggle source
# File lib/ddql/token_type.rb, line 260
def as_hash(data)
  {op: {op_is: 'IS'}, right: {null_value_type: data.squish.split(' ').last}}
end
comparison?() click to toggle source
# File lib/ddql/token_type.rb, line 264
def comparison?
  true
end