64 lines · plain
1module ExternCtx {2 header "ExternCtx.h"3}4 5module ExportAsCore {6 header "ExportAsCore.h"7 export_as ExportAs8}9 10module ExportAs {11 header "ExportAs.h"12 export *13}14 15module Fields {16 header "Fields.h"17 export *18}19 20module Lifetimebound {21 header "Lifetimebound.h"22 export *23}24 25module HeaderLib {26 header "HeaderLib.h"27}28 29module InstancetypeModule {30 header "InstancetypeModule.h"31}32 33module BrokenTypes {34 header "BrokenTypes.h"35}36 37module Methods {38 header "Methods.h"39}40 41module ModuleWithWrongCase {42 header "ModuleWithWrongCase.h"43}44 45module ModuleWithWrongCasePrivate {46 header "ModuleWithWrongCasePrivate.h"47}48 49module Namespaces {50 header "Namespaces.h"51}52 53module Templates {54 header "Templates.h"55}56 57module SwiftImportAs {58 header "SwiftImportAs.h"59}60 61module SwiftReturnOwnershipForObjC {62 header "SwiftReturnOwnershipForObjC.h"63}64