class RubyIndexer::Location

def ==(other)

: ((Location | Prism::Location) other) -> bool
def ==(other)
  start_line == other.start_line &&
    end_line == other.end_line &&
    start_column == other.start_column &&
    end_column == other.end_column
end