mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Lazy loading checked if the ClangDecl was hidden, but loading all members did not. Let's make loadAllMembers() behave like the lazy path, and fix some of the mock SDKs in the test suite.
41 lines
490 B
Plaintext
41 lines
490 B
Plaintext
|
|
module gizmo {
|
|
header "Gizmo.h"
|
|
export *
|
|
}
|
|
|
|
module SRoA {
|
|
header "SRoA.h"
|
|
export *
|
|
}
|
|
|
|
module ObjectiveC {
|
|
header "BridgeTestObjectiveC.h"
|
|
export *
|
|
}
|
|
|
|
module CoreCooling {
|
|
header "CoreCooling.h"
|
|
export *
|
|
}
|
|
|
|
module Foundation {
|
|
header "BridgeTestFoundation.h"
|
|
export *
|
|
}
|
|
|
|
module CoreFoundation {
|
|
header "BridgeTestCoreFoundation.h"
|
|
export *
|
|
}
|
|
|
|
module ObjCInterop {
|
|
header "ObjCInterop.h"
|
|
export *
|
|
}
|
|
|
|
module error_domains {
|
|
header "error_domains.h"
|
|
export *
|
|
}
|