class SimpleCov::Formatter::JSONFormatter::ResultHashFormatter

def format_line_statistic(stat)

def format_line_statistic(stat)
  {
    covered: stat.covered,
    missed: stat.missed,
    omitted: stat.omitted,
    total: stat.total,
    percent: stat.percent,
    strength: stat.strength
  }
end