class ChewyQuery::Builder::Nodes::Base

Public Instance Methods

eql?(other) click to toggle source
# File lib/chewy_query/builder/nodes/base.rb, line 9
def eql?(other)
  other.is_a?(self.class) && instance_variables.all? do |ivar|
    instance_variable_get(ivar).eql? other.instance_variable_get(ivar)
  end
end
render() click to toggle source
# File lib/chewy_query/builder/nodes/base.rb, line 5
def render
  raise NotImplementedError
end