Method: SwiftTools::ObjC2Swift#indent_lines

Defined in:
lib/swift_tools/objc_2_swift.rb

#indent_lines(content) ⇒ Object



533
534
535
536
537
538
539
# File 'lib/swift_tools/objc_2_swift.rb', line 533

def indent_lines(content)
  s = ''
  content.each_line {|line|
    s += INDENT + line
  }
  s
end