mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
`module.map` as a module map name has been discouraged since 2014, and Clang will soon warn on its usage. This patch renames all instances of `module.map` in the Swift tests to `module.modulemap` in preparation for this change to Clang. rdar://106123303
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 *
|
|
}
|
|
|