mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Share implementation of local rename and related identifiers + implement `NameMatcher` in Swift
35 lines
557 B
Plaintext
35 lines
557 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 ParseBridging {
|
|
header "swift/Parse/ParseBridging.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
|
|
module SILBridging {
|
|
header "swift/SIL/SILBridging.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
|
|
module OptimizerBridging {
|
|
header "swift/SILOptimizer/OptimizerBridging.h"
|
|
export *
|
|
}
|