[AST/Sema] TypeWrappers/NFC: Rename type wrapper storage property to $storage

This commit is contained in:
Pavel Yaskevich
2022-10-06 15:53:11 -07:00
parent 0f48f5c152
commit 70b0cd523a
7 changed files with 22 additions and 22 deletions

View File

@@ -1249,7 +1249,7 @@ void TypeChecker::addImplicitConstructors(NominalTypeDecl *decl) {
auto &ctx = decl->getASTContext();
// If declaration is type wrapped and there are no
// designated initializers, synthesize a special
// memberwise initializer that would instantiate `$_storage`.
// memberwise initializer that would instantiate `$storage`.
if (!hasUserDefinedDesignatedInit(ctx.evaluator, decl))
(void)decl->getTypeWrappedTypeMemberwiseInitializer();
}