Files
swift-mirror/include/module.modulemap
Rintaro Ishizaki fb08a92f48 [ASTGen] Infrastructure to implment ASTGen Incrementally
* 'ASTGenVisitor' has a reference to a legacy C++ Parser configured for
  ASTGen.
* If 'ASTGenVisitor' encounters a AST node that hasn't been migrated,
  call parse(Decl|Stmt|Expr|Type) to parse the position using the legacy
  parser.
* The legacy parser calls ASTGen's
  'swift_ASTGen_build(Decl|Stmt|Expr|Type)' for each ASTNode "parsing"
  (unless the call is not directly from the ASTGen.)

rdar://117151886
2023-11-12 21:43:08 -08:00

34 lines
555 B
Plaintext

module BasicBridging {
header "swift/Basic/BasicBridging.h"
requires cplusplus
export *
}
module ASTBridging {
header "swift/AST/ASTBridging.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 *
}
module _RegexParserBridging {
header "swift/Parse/RegexParserBridging.h"
export *
}