18
18
public protocol BracedSyntax : SyntaxProtocol {
19
19
/// ### Tokens
20
20
///
21
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `'{'`
21
+ /// For syntax trees generated by the parser, this is guaranteed to be `{`
22
22
var leftBrace : TokenSyntax {
23
23
get
24
24
set
25
25
}
26
26
27
27
/// ### Tokens
28
28
///
29
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `'}'`
29
+ /// For syntax trees generated by the parser, this is guaranteed to be `}`
30
30
var rightBrace : TokenSyntax {
31
31
get
32
32
set
@@ -130,8 +130,8 @@ public protocol EffectSpecifiersSyntax: SyntaxProtocol {
130
130
/// ### Tokens
131
131
///
132
132
/// For syntax trees generated by the parser, this is guaranteed to be one of the following kinds:
133
- /// - `' async' `
134
- /// - `' reasync' `
133
+ /// - `async`
134
+ /// - `reasync`
135
135
var asyncSpecifier : TokenSyntax ? {
136
136
get
137
137
set
@@ -145,8 +145,8 @@ public protocol EffectSpecifiersSyntax: SyntaxProtocol {
145
145
/// ### Tokens
146
146
///
147
147
/// For syntax trees generated by the parser, this is guaranteed to be one of the following kinds:
148
- /// - `' throws' `
149
- /// - `' rethrows' `
148
+ /// - `throws`
149
+ /// - `rethrows`
150
150
var throwsSpecifier : TokenSyntax ? {
151
151
get
152
152
set
@@ -191,15 +191,15 @@ public extension SyntaxProtocol {
191
191
public protocol FreestandingMacroExpansionSyntax : SyntaxProtocol {
192
192
/// ### Tokens
193
193
///
194
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `'#'`
194
+ /// For syntax trees generated by the parser, this is guaranteed to be `#`
195
195
var pound : TokenSyntax {
196
196
get
197
197
set
198
198
}
199
199
200
200
/// ### Tokens
201
201
///
202
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `<identifier>`
202
+ /// For syntax trees generated by the parser, this is guaranteed to be `<identifier>`
203
203
var macroName : TokenSyntax {
204
204
get
205
205
set
@@ -212,7 +212,7 @@ public protocol FreestandingMacroExpansionSyntax: SyntaxProtocol {
212
212
213
213
/// ### Tokens
214
214
///
215
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `'('`
215
+ /// For syntax trees generated by the parser, this is guaranteed to be `(`
216
216
var leftParen : TokenSyntax ? {
217
217
get
218
218
set
@@ -225,7 +225,7 @@ public protocol FreestandingMacroExpansionSyntax: SyntaxProtocol {
225
225
226
226
/// ### Tokens
227
227
///
228
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `')'`
228
+ /// For syntax trees generated by the parser, this is guaranteed to be `)`
229
229
var rightParen : TokenSyntax ? {
230
230
get
231
231
set
@@ -275,7 +275,7 @@ public extension SyntaxProtocol {
275
275
public protocol NamedDeclSyntax : SyntaxProtocol {
276
276
/// ### Tokens
277
277
///
278
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `<identifier>`
278
+ /// For syntax trees generated by the parser, this is guaranteed to be `<identifier>`
279
279
var name : TokenSyntax {
280
280
get
281
281
set
@@ -319,7 +319,7 @@ public protocol MissingNodeSyntax: SyntaxProtocol {
319
319
///
320
320
/// ### Tokens
321
321
///
322
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `<identifier>`
322
+ /// For syntax trees generated by the parser, this is guaranteed to be `<identifier>`
323
323
var placeholder : TokenSyntax {
324
324
get
325
325
set
@@ -359,15 +359,15 @@ public extension SyntaxProtocol {
359
359
public protocol ParenthesizedSyntax : SyntaxProtocol {
360
360
/// ### Tokens
361
361
///
362
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `'('`
362
+ /// For syntax trees generated by the parser, this is guaranteed to be `(`
363
363
var leftParen : TokenSyntax {
364
364
get
365
365
set
366
366
}
367
367
368
368
/// ### Tokens
369
369
///
370
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `')'`
370
+ /// For syntax trees generated by the parser, this is guaranteed to be `)`
371
371
var rightParen : TokenSyntax {
372
372
get
373
373
set
@@ -601,7 +601,7 @@ public extension SyntaxProtocol {
601
601
public protocol WithTrailingCommaSyntax : SyntaxProtocol {
602
602
/// ### Tokens
603
603
///
604
- /// For syntax trees generated by the parser, this is guaranteed to be one of the following kind: `','`
604
+ /// For syntax trees generated by the parser, this is guaranteed to be `,`
605
605
var trailingComma : TokenSyntax ? {
606
606
get
607
607
set
0 commit comments