Files
swift-mirror/include/swift/module.modulemap
Richard Wei dd7610f2d2 Rename _MatchingEngine module to _RegexParser (#42081)
As the _MatchingEngine module no longer contains the matching engine, this patch renames this module to describe its role more accurately. Because this module primarily contains the AST and the regex parsing logic, I propose we rename it to "_RegexParser".

Also renames the ExperimentalRegex module in SwiftCompilerSources to _RegexParser for consistency. This would prevent errors if sources in _RegexParser used qualified lookup with the module name.
2022-03-31 11:13:18 -07:00

26 lines
403 B
Plaintext

module BasicBridging {
header "Basic/BridgedSwiftObject.h"
header "Basic/BasicBridging.h"
export *
}
module ASTBridging {
header "AST/ASTBridging.h"
export *
}
module SILBridging {
header "SIL/SILBridging.h"
export *
}
module OptimizerBridging {
header "SILOptimizer/OptimizerBridging.h"
export *
}
module _RegexParserBridging {
header "Parse/RegexParserBridging.h"
export *
}