mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This translates clang arguments to swift ones, uses the bridging header functionality to parse the provided file, and re-uses part of the module interface printing implementation to print an interface for the header. Part of rdar://19939192 Swift SVN r28062
12 lines
152 B
Objective-C
12 lines
152 B
Objective-C
void doSomethingInHead(int arg);
|
|
|
|
@interface BaseInHead
|
|
- (void)doIt:(int)arg;
|
|
@end
|
|
|
|
/// Awesome name.
|
|
@interface SameName
|
|
@end
|
|
@protocol SameName
|
|
@end
|