mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
These new Clang attributes identify whether an enum is intended to represent an option set or not, and whether the set of cases listed in the enum declaration is exhaustive. (Swift doesn't currently have a closed/open distinction for enums, so treat any C enum with enum_extensibility as a proper closed Swift enum, like we do with NS_ENUM.) Enums with neither attribute will continue to be imported as unique types. rdar://problem/28476618
27 lines
840 B
C
27 lines
840 B
C
@import Foundation;
|
|
|
|
#define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
|
|
|
#define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum __attribute__((enum_extensibility(open))) SWIFT_ENUM_EXTRA _name : _type
|
|
|
|
typedef SWIFT_ENUM(NSInteger, Normal) {
|
|
NormalOne = 0,
|
|
NormalTwo,
|
|
NormalThree
|
|
};
|
|
|
|
#define SWIFT_ENUM_NAMED(_type, _name, _swiftName) enum _name : _type _name SWIFT_COMPILE_NAME(_swiftName); enum SWIFT_COMPILE_NAME(_swiftName) __attribute__((enum_extensibility(open))) SWIFT_ENUM_EXTRA _name : _type
|
|
|
|
typedef SWIFT_ENUM_NAMED(NSInteger, ObjCEnum, "SwiftEnum") {
|
|
ObjCEnumOne = 0,
|
|
ObjCEnumTwo,
|
|
ObjCEnumThree
|
|
};
|
|
|
|
typedef SWIFT_ENUM_NAMED(NSInteger, ObjCEnumTwo, "SwiftEnumTwo") {
|
|
// the following shouldn't have their prefixes stripped
|
|
SwiftEnumTwoA,
|
|
SwiftEnumTwoB,
|
|
SwiftEnumTwoC
|
|
};
|