mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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.
29 lines
460 B
Plaintext
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 *
|
|
}
|