[Distributed] Complete handling of protocol calls and witnesses using adjusted mangling scheme (#72416)

This commit is contained in:
Konrad `ktoso` Malawski
2024-03-23 23:54:23 +09:00
committed by GitHub
parent 40d9ea598e
commit 6132386371
49 changed files with 578 additions and 236 deletions

View File

@@ -357,6 +357,7 @@ UIdent SwiftLangSupport::getUIDForAccessor(const ValueDecl *D,
bool IsRef) {
switch (AccKind) {
case AccessorKind::Get:
case AccessorKind::DistributedGet:
return IsRef ? KindRefAccessorGetter : KindDeclAccessorGetter;
case AccessorKind::Set:
return IsRef ? KindRefAccessorSetter : KindDeclAccessorSetter;