Update spelling for representing lifetime dependencies to @_lifetime

This commit is contained in:
Meghana Gupta
2025-06-07 03:30:35 -07:00
parent 44e05fa858
commit 0dfa1fc312
14 changed files with 81 additions and 43 deletions

View File

@@ -2017,6 +2017,10 @@ bool ModuleDecl::isStdlibModule() const {
return !getParent() && getName() == getASTContext().StdlibModuleName;
}
bool ModuleDecl::isCxxModule() const {
return !getParent() && getName() == getASTContext().Id_Cxx;
}
bool ModuleDecl::isConcurrencyModule() const {
return !getParent() && getName() == getASTContext().Id_Concurrency;
}