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 {
868
868
// / swift_isUniquelyReferenced functions.
869
869
AvailabilityContext getObjCIsUniquelyReferencedAvailability ();
870
870
871
+ // / Get the runtime availability of metadata manipulation runtime functions
872
+ // / for extended existential types.
873
+ AvailabilityContext getParameterizedExistentialRuntimeAvailability ();
874
+
871
875
// / Get the runtime availability of features introduced in the Swift 5.2
872
876
// / compiler for the target platform.
873
877
AvailabilityContext getSwift52Availability ();
Original file line number Diff line number Diff line change @@ -394,6 +394,11 @@ AvailabilityContext ASTContext::getObjCIsUniquelyReferencedAvailability() {
394
394
return getSwift56Availability ();
395
395
}
396
396
397
+ AvailabilityContext
398
+ ASTContext::getParameterizedExistentialRuntimeAvailability () {
399
+ return getSwift57Availability ();
400
+ }
401
+
397
402
AvailabilityContext ASTContext::getSwift52Availability () {
398
403
auto target = LangOpts.Target ;
399
404
You can’t perform that action at this time.
0 commit comments