Improve tests and generate the rest of the output

This commit is contained in:
Bruno Rocha
2020-05-25 22:06:10 +02:00
parent 2a48e19ff0
commit f000639cce
24 changed files with 2715 additions and 418 deletions

View File

@@ -819,8 +819,10 @@ UIdent SwiftLangSupport::getUIDForFormalAccessScope(const swift::AccessScope Sco
return EffectiveAccess_Internal;
} else if (Scope.isFileScope()) {
return EffectiveAccess_FilePrivate;
} else {
} else if (Scope.isPrivate()) {
return EffectiveAccess_LessThanFilePrivate;
} else {
llvm_unreachable("Unsupported access scope");
}
}