class Solargraph::Range

def == other

def == other
  return false unless other.is_a?(Range)
  start == other.start && ending == other.ending
end