mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This functionality is not actively in use and the last usage of this has been removed. Remove the infrastructure that is no longer in need.
62 lines
809 B
Plaintext
62 lines
809 B
Plaintext
module OmitNeedlessWords {
|
|
export *
|
|
header "OmitNeedlessWords.h"
|
|
}
|
|
|
|
module ImportedProtocols {
|
|
export *
|
|
module SubModule {
|
|
requires objc
|
|
header "ImportedProtocols.h"
|
|
}
|
|
}
|
|
|
|
module Newtype {
|
|
export *
|
|
header "Newtype.h"
|
|
}
|
|
|
|
module NewtypeObjC {
|
|
header "NewtypeObjC.h"
|
|
export *
|
|
}
|
|
|
|
module ImportAsMember {
|
|
export *
|
|
|
|
module A {
|
|
header "ImportAsMember.h"
|
|
}
|
|
|
|
module B {
|
|
header "ImportAsMemberB.h"
|
|
}
|
|
|
|
module C {
|
|
requires objc
|
|
header "ImportAsMemberC.h"
|
|
export *
|
|
}
|
|
|
|
module APINotes {
|
|
header "ImportAsMemberAPINotes.h"
|
|
}
|
|
|
|
module Class {
|
|
requires objc
|
|
header "ImportAsMemberClass.h"
|
|
}
|
|
}
|
|
|
|
module IAMError {
|
|
export *
|
|
requires objc
|
|
header "ImportAsMemberError.h"
|
|
}
|
|
|
|
module CompatibilityAlias {
|
|
header "CompatibilityAlias.h"
|
|
export *
|
|
}
|
|
|