class Solargraph::Location

def == other

Parameters:
  • other (BasicObject) --
def == other
  return false unless other.is_a?(Location)
  filename == other.filename and range == other.range
end