class RuboCop::Formatter::ClangStyleFormatter

def report_line(location)

def report_line(location)
  source_line = location.source_line
  if location.first_line == location.last_line
    output.puts(source_line)
  else
    output.puts("#{source_line} #{yellow(ELLIPSES)}")
  end
end