You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/swift/AST/Attr.h
+21-27Lines changed: 21 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -165,14 +165,20 @@ class DeclAttribute : public AttributeBase {
165
165
/// Whether this attribute was spelled `@_spi_available`.
166
166
IsSPI : 1,
167
167
168
-
/// Whether this attribute belongs to a chain of adjacent `@available` attributes that were generated from a single attribute written in source using short form syntax e.g. (`@available(macOS 15, iOS 18, *)`).
168
+
/// Whether this attribute belongs to a chain of adjacent `@available`
169
+
/// attributes that were generated from a single attribute written in
170
+
/// source using short form syntax, e.g.
171
+
///
172
+
/// @available(macOS 15, iOS 18, *)
173
+
///
169
174
IsGroupMember : 1,
170
175
171
176
/// Whether this attribute is the final one in its group.
172
177
IsGroupTerminator : 1,
173
178
174
-
/// Whether this attribute's specification was followed by `, *` in source.
175
-
IsAdjacentToWildcard : 1
179
+
/// Whether any members of the group were written as a wildcard
0 commit comments