Commits

Doug Gregor committed e5fff12bf02
Add option to split Objective-C selectors based on the last preposition. The frontend option -split-objc-selectors splits the first part of an Objective-C selector into both a function name and the first parameter name at the last preposition. For example, this Objective-C method: - (NSString *)stringByPaddingToLength:(NSUInteger)newLength withString:(NSString *)padString startingAtIndex:(NSUInteger)padIndex is imported as func stringByPadding toLength(newLength: Int) withString(padString: String) startingAtIndex(padIndex: Int) -> String Swift SVN r15156