Serialization: Read and write support for public module name

This commit is contained in:
Alexis Laferrière
2024-08-20 13:22:55 -07:00
parent 3fe97c2eb8
commit 37521ad21d
8 changed files with 34 additions and 1 deletions

View File

@@ -1398,3 +1398,7 @@ StringRef SerializedASTFile::getExportedModuleName() const {
return name;
return FileUnit::getExportedModuleName();
}
StringRef SerializedASTFile::getPublicModuleName() const {
return File.getPublicModuleName();
}