class SimpleCov::Result

def adapt_result(result)

See https://github.com/colszowka/simplecov/pull/824#issuecomment-576049747
considered we can adapt them).
to have "old" resultsets lying around (but not too old so that they're still
We changed the format of the raw result data in simplecov, as people are likely
def adapt_result(result)
  if pre_simplecov_0_18_result?(result)
    adapt_pre_simplecov_0_18_result(result)
  else
    result
  end
end