mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Sema: Keep public module name in ModuleDecl
This commit is contained in:
@@ -953,6 +953,8 @@ LoadedFile *SerializedModuleLoaderBase::loadAST(
|
||||
M.setSerializePackageEnabled();
|
||||
if (!loadedModuleFile->getModuleABIName().empty())
|
||||
M.setABIName(Ctx.getIdentifier(loadedModuleFile->getModuleABIName()));
|
||||
if (!loadedModuleFile->getPublicModuleName().empty())
|
||||
M.setPublicModuleName(Ctx.getIdentifier(loadedModuleFile->getPublicModuleName()));
|
||||
if (loadedModuleFile->isConcurrencyChecked())
|
||||
M.setIsConcurrencyChecked();
|
||||
if (loadedModuleFile->hasCxxInteroperability()) {
|
||||
|
||||
Reference in New Issue
Block a user