class ActionView::Template::Error

def formatted_code_for(source_code, line_counter, indent)

def formatted_code_for(source_code, line_counter, indent)
  indent_template = "%#{indent}s: %s"
  source_code.map do |line|
    line_counter += 1
    indent_template % [line_counter, line]
  end
end