Files
swift-mirror/include/module.modulemap
Rintaro Ishizaki 1fc00ae248 [ASTGen] Remove LegacyParser ping-pong mechanism
Now that ASTGen should be able to generate most Swift code. Let's
remove "legacy parser" call-in, and remove the unhealthy cyclic
dependency between lib/Parse and ASTGen.
2024-11-14 22:46:43 -08:00

29 lines
460 B
Plaintext

module BasicBridging {
header "swift/Basic/BasicBridging.h"
requires cplusplus
export *
}
module ASTBridging {
header "swift/AST/ASTBridging.h"
requires cplusplus
export *
}
module IDEBridging {
header "swift/IDE/IDEBridging.h"
requires cplusplus
export *
}
module SILBridging {
header "swift/SIL/SILBridging.h"
requires cplusplus
export *
}
module OptimizerBridging {
header "swift/SILOptimizer/OptimizerBridging.h"
export *
}