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
/// The argument labels of the protocol's requirement if it is a function requirement.
18198
+
/// The argument labels of the protocol's requirement if it
18199
+
/// is a function requirement.
18185
18200
///
18186
18201
public var declNameArguments: DeclNameArgumentsSyntax? {
18187
18202
get {
@@ -18259,7 +18274,9 @@ public protocol ObjCSelectorPieceSyntaxProtocol: SyntaxProtocol {}
18259
18274
18260
18275
18261
18276
///
18262
-
/// A piece of an Objective-C selector. Either consisiting of just an identifier for a nullary selector, an identifier and a colon for a labeled argument or just a colon for an unlabeled argument
18277
+
/// A piece of an Objective-C selector. Either consisiting of just an
18278
+
/// identifier for a nullary selector, an identifier and a colon for a
18279
+
/// labeled argument or just a colon for an unlabeled argument
18263
18280
///
18264
18281
public struct ObjCSelectorPieceSyntax: SyntaxProtocol {
18265
18282
enum Cursor: Int {
@@ -27822,7 +27839,8 @@ public protocol AvailabilityArgumentSyntaxProtocol: SyntaxProtocol {}
27822
27839
27823
27840
27824
27841
///
27825
-
/// A single argument to an `@available` argument like `*`, `iOS 10.1`, or `message: "This has been deprecated"`.
27842
+
/// A single argument to an `@available` argument like `*`, `iOS 10.1`,
27843
+
/// or `message: "This has been deprecated"`.
27826
27844
///
27827
27845
public struct AvailabilityArgumentSyntax: SyntaxProtocol {
27828
27846
enum Cursor: Int {
@@ -27869,7 +27887,8 @@ public struct AvailabilityArgumentSyntax: SyntaxProtocol {
27869
27887
return AvailabilityArgumentSyntax(newData)
27870
27888
}
27871
27889
///
27872
-
/// A trailing comma if the argument is followed by another argument
27890
+
/// A trailing comma if the argument is followed by another
27891
+
/// argument
27873
27892
///
27874
27893
public var trailingComma: TokenSyntax? {
27875
27894
get {
@@ -27947,7 +27966,8 @@ public protocol AvailabilityLabeledArgumentSyntaxProtocol: SyntaxProtocol {}
27947
27966
27948
27967
27949
27968
///
27950
-
/// A argument to an `@available` attribute that consists of a label and a value, e.g. `message: "This has been deprecated"`.
27969
+
/// A argument to an `@available` attribute that consists of a label and
27970
+
/// a value, e.g. `message: "This has been deprecated"`.
27951
27971
///
27952
27972
public struct AvailabilityLabeledArgumentSyntax: SyntaxProtocol {
27953
27973
enum Cursor: Int {
@@ -28091,7 +28111,8 @@ public protocol AvailabilityVersionRestrictionSyntaxProtocol: SyntaxProtocol {}
28091
28111
28092
28112
28093
28113
///
28094
-
/// An argument to `@available` that restricts the availability on a certain platform to a version, e.g. `iOS 10` or `swift 3.4`.
28114
+
/// An argument to `@available` that restricts the availability on a
28115
+
/// certain platform to a version, e.g. `iOS 10` or `swift 3.4`.
28095
28116
///
28096
28117
public struct AvailabilityVersionRestrictionSyntax: SyntaxProtocol {
28097
28118
enum Cursor: Int {
@@ -28117,7 +28138,9 @@ public struct AvailabilityVersionRestrictionSyntax: SyntaxProtocol {
28117
28138
}
28118
28139
28119
28140
///
28120
-
/// The name of the OS on which the availability should be restricted or 'swift' if the availability should be restricted based on a Swift version.
28141
+
/// The name of the OS on which the availability should be
28142
+
/// restricted or 'swift' if the availability should be
28143
+
/// restricted based on a Swift version.
28121
28144
///
28122
28145
public var platform: TokenSyntax {
28123
28146
get {
@@ -28214,7 +28237,8 @@ public protocol VersionTupleSyntaxProtocol: SyntaxProtocol {}
28214
28237
28215
28238
28216
28239
///
28217
-
/// A version number of the form major.minor.patch in which the minor and patch part may be ommited.
28240
+
/// A version number of the form major.minor.patch in which the minor
28241
+
/// and patch part may be ommited.
28218
28242
///
28219
28243
public struct VersionTupleSyntax: SyntaxProtocol {
28220
28244
enum Cursor: Int {
@@ -28241,7 +28265,11 @@ public struct VersionTupleSyntax: SyntaxProtocol {
28241
28265
}
28242
28266
28243
28267
///
28244
-
/// In case the version consists only of the major version, an integer literal that specifies the major version. In case the version consists of major and minor version number, a floating literal in which the decimal part is interpreted as the minor version.
28268
+
/// In case the version consists only of the major version, an
28269
+
/// integer literal that specifies the major version. In case
28270
+
/// the version consists of major and minor version number, a
28271
+
/// floating literal in which the decimal part is interpreted
28272
+
/// as the minor version.
28245
28273
///
28246
28274
public var majorMinor: Syntax {
28247
28275
get {
@@ -28264,7 +28292,8 @@ public struct VersionTupleSyntax: SyntaxProtocol {
28264
28292
return VersionTupleSyntax(newData)
28265
28293
}
28266
28294
///
28267
-
/// If the version contains a patch number, the period separating the minor from the patch number.
28295
+
/// If the version contains a patch number, the period
0 commit comments