File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3191,11 +3191,11 @@ class SemanticAvailableAttr final {
3191
3191
3192
3192
// / Returns the platform kind that the attribute applies to, or
3193
3193
// / `PlatformKind::none` if the attribute is not platform specific.
3194
- bool isPlatformSpecific () const { return domain .isPlatform (); }
3194
+ bool isPlatformSpecific () const { return getDomain () .isPlatform (); }
3195
3195
3196
3196
// / Returns the platform kind that the attribute applies to, or
3197
3197
// / `PlatformKind::none` if the attribute is not platform specific.
3198
- PlatformKind getPlatformKind () const { return domain .getPlatformKind (); }
3198
+ PlatformKind getPlatformKind () const { return getDomain () .getPlatformKind (); }
3199
3199
3200
3200
// / Whether this attribute has an introduced, deprecated, or obsoleted
3201
3201
// / version.
@@ -3205,12 +3205,12 @@ class SemanticAvailableAttr final {
3205
3205
3206
3206
// / Whether this is a language mode specific attribute.
3207
3207
bool isSwiftLanguageModeSpecific () const {
3208
- return domain .isSwiftLanguage () && isVersionSpecific ();
3208
+ return getDomain () .isSwiftLanguage () && isVersionSpecific ();
3209
3209
}
3210
3210
3211
3211
// / Whether this is a PackageDescription version specific attribute.
3212
3212
bool isPackageDescriptionVersionSpecific () const {
3213
- return domain .isPackageDescription () && isVersionSpecific ();
3213
+ return getDomain () .isPackageDescription () && isVersionSpecific ();
3214
3214
}
3215
3215
3216
3216
// / Returns the active version from the AST context corresponding to
You can’t perform that action at this time.
0 commit comments