class SimpleCov::Formatter::JSONFormatter::SourceFileFormatter

def format_branch(branch)

def format_branch(branch)
  {
    type: branch.type,
    start_line: branch.start_line,
    end_line: branch.end_line,
    coverage: format_line(branch),
    inline: branch.inline?,
    report_line: branch.report_line
  }
end