797284dada
This commit will introduce the first processing queue which will take care of properly ordering the 'to translate' symbols as well as taking care of 'dependency' symbols (aka symbols mentioned in signatures or as supertypes). - There are several changes like properly translating types as ObjCProtocolType instead of ObjCClassType (if origin was an interface) - Type translation of generics defined on interfaces will also emit id type. - Add initial nested classes collection to the queue - Add extension function test, add tickets references ^KT-65237 Verification Pending ^KT-65329 Verification Pending
34 lines
768 B
Objective-C
Vendored
34 lines
768 B
Objective-C
Vendored
#import <Foundation/NSArray.h>
|
|
#import <Foundation/NSDictionary.h>
|
|
#import <Foundation/NSError.h>
|
|
#import <Foundation/NSObject.h>
|
|
#import <Foundation/NSSet.h>
|
|
#import <Foundation/NSString.h>
|
|
#import <Foundation/NSValue.h>
|
|
|
|
@protocol B;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wunknown-warning-option"
|
|
#pragma clang diagnostic ignored "-Wincompatible-property-type"
|
|
#pragma clang diagnostic ignored "-Wnullability"
|
|
|
|
#pragma push_macro("_Nullable_result")
|
|
#if !__has_feature(nullability_nullable_result)
|
|
#undef _Nullable_result
|
|
#define _Nullable_result _Nullable
|
|
#endif
|
|
|
|
@protocol B
|
|
@required
|
|
@end
|
|
|
|
@protocol A <B>
|
|
@required
|
|
@end
|
|
|
|
#pragma pop_macro("_Nullable_result")
|
|
#pragma clang diagnostic pop
|
|
NS_ASSUME_NONNULL_END
|