File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -868,6 +868,10 @@ class ASTContext final {
868868 // / swift_isUniquelyReferenced functions.
869869 AvailabilityContext getObjCIsUniquelyReferencedAvailability ();
870870
871+ // / Get the runtime availability of metadata manipulation runtime functions
872+ // / for extended existential types.
873+ AvailabilityContext getParameterizedExistentialRuntimeAvailability ();
874+
871875 // / Get the runtime availability of features introduced in the Swift 5.2
872876 // / compiler for the target platform.
873877 AvailabilityContext getSwift52Availability ();
Original file line number Diff line number Diff line change @@ -394,6 +394,11 @@ AvailabilityContext ASTContext::getObjCIsUniquelyReferencedAvailability() {
394394 return getSwift56Availability ();
395395}
396396
397+ AvailabilityContext
398+ ASTContext::getParameterizedExistentialRuntimeAvailability () {
399+ return getSwift57Availability ();
400+ }
401+
397402AvailabilityContext ASTContext::getSwift52Availability () {
398403 auto target = LangOpts.Target ;
399404
You can’t perform that action at this time.
0 commit comments