mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Merge with BasicBridging and ASTBridging respectively. The changes here should be pretty uncontroversial, I tried to keep it to just moving code about.
28 lines
458 B
Plaintext
28 lines
458 B
Plaintext
module BasicBridging {
|
|
header "swift/Basic/BasicBridging.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
|
|
module ASTBridging {
|
|
header "swift/AST/ASTBridging.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
|
|
module SILBridging {
|
|
header "swift/SIL/SILBridging.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
|
|
module OptimizerBridging {
|
|
header "swift/SILOptimizer/OptimizerBridging.h"
|
|
export *
|
|
}
|
|
|
|
module _RegexParserBridging {
|
|
header "swift/Parse/RegexParserBridging.h"
|
|
export *
|
|
}
|