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