@@ -52,7 +52,7 @@ public let ATTRIBUTE_NODES: [Node] = [
52
52
children: [
53
53
Child (
54
54
name: " atSign " ,
55
- deprecatedName: " AtSignToken " ,
55
+ deprecatedName: " atSignToken " ,
56
56
kind: . token( choices: [ . token( . atSign) ] ) ,
57
57
documentation: " The `@` sign. "
58
58
) ,
@@ -70,7 +70,7 @@ public let ATTRIBUTE_NODES: [Node] = [
70
70
) ,
71
71
Child (
72
72
name: " arguments " ,
73
- deprecatedName: " Argument " ,
73
+ deprecatedName: " argument " ,
74
74
kind: . nodeChoices( choices: [
75
75
Child (
76
76
name: " argumentList " ,
@@ -178,7 +178,7 @@ public let ATTRIBUTE_NODES: [Node] = [
178
178
children: [
179
179
Child (
180
180
name: " availabilityLabel " ,
181
- deprecatedName: " Label " ,
181
+ deprecatedName: " label " ,
182
182
kind: . token( choices: [ . keyword( text: " availability " ) ] ) ,
183
183
nameForDiagnostics: " label " ,
184
184
documentation: " The label of the argument "
@@ -190,7 +190,7 @@ public let ATTRIBUTE_NODES: [Node] = [
190
190
) ,
191
191
Child (
192
192
name: " availabilityArguments " ,
193
- deprecatedName: " AvailabilityList " ,
193
+ deprecatedName: " availabilityList " ,
194
194
kind: . collection( kind: . availabilityArgumentList, collectionElementName: " AvailabilityArgument " , deprecatedCollectionElementName: " Availability " )
195
195
) ,
196
196
Child (
@@ -210,7 +210,7 @@ public let ATTRIBUTE_NODES: [Node] = [
210
210
children: [
211
211
Child (
212
212
name: " platformVersion " ,
213
- deprecatedName: " AvailabilityVersionRestriction " ,
213
+ deprecatedName: " availabilityVersionRestriction " ,
214
214
kind: . node( kind: . platformVersion)
215
215
) ,
216
216
Child (
@@ -251,7 +251,7 @@ public let ATTRIBUTE_NODES: [Node] = [
251
251
) ,
252
252
Child (
253
253
name: " platforms " ,
254
- deprecatedName: " VersionList " ,
254
+ deprecatedName: " versionList " ,
255
255
kind: . collection( kind: . platformVersionItemList, collectionElementName: " Platform " , deprecatedCollectionElementName: " Availability " ) ,
256
256
documentation: " The list of OS versions in which the declaration became ABI stable. "
257
257
) ,
@@ -351,7 +351,7 @@ public let ATTRIBUTE_NODES: [Node] = [
351
351
) ,
352
352
Child (
353
353
name: " accessorSpecifier " ,
354
- deprecatedName: " AccessorKind " ,
354
+ deprecatedName: " accessorKind " ,
355
355
kind: . token( choices: [ . keyword( text: " get " ) , . keyword( text: " set " ) ] ) ,
356
356
documentation: " The accessor name. " ,
357
357
isOptional: true
@@ -363,7 +363,7 @@ public let ATTRIBUTE_NODES: [Node] = [
363
363
) ,
364
364
Child (
365
365
name: " arguments " ,
366
- deprecatedName: " DiffParams " ,
366
+ deprecatedName: " diffParams " ,
367
367
kind: . node( kind: . differentiabilityWithRespectToArgument) ,
368
368
isOptional: true
369
369
) ,
@@ -391,7 +391,7 @@ public let ATTRIBUTE_NODES: [Node] = [
391
391
children: [
392
392
Child (
393
393
name: " argument " ,
394
- deprecatedName: " Parameter " ,
394
+ deprecatedName: " parameter " ,
395
395
kind: . token( choices: [ . token( . identifier) , . token( . integerLiteral) , . keyword( text: " self " ) ] )
396
396
) ,
397
397
Child (
@@ -422,16 +422,16 @@ public let ATTRIBUTE_NODES: [Node] = [
422
422
) ,
423
423
Child (
424
424
name: " arguments " ,
425
- deprecatedName: " Parameters " ,
425
+ deprecatedName: " parameters " ,
426
426
kind: . nodeChoices( choices: [
427
427
Child (
428
428
name: " argument " ,
429
- deprecatedName: " Parameter " ,
429
+ deprecatedName: " parameter " ,
430
430
kind: . node( kind: . differentiabilityArgument)
431
431
) ,
432
432
Child (
433
433
name: " argumentList " ,
434
- deprecatedName: " ParameterList " ,
434
+ deprecatedName: " parameterList " ,
435
435
kind: . node( kind: . differentiabilityArguments)
436
436
) ,
437
437
] ) ,
@@ -453,7 +453,7 @@ public let ATTRIBUTE_NODES: [Node] = [
453
453
) ,
454
454
Child (
455
455
name: " arguments " ,
456
- deprecatedName: " DifferentiabilityParameters " ,
456
+ deprecatedName: " differentiabilityParameters " ,
457
457
kind: . collection( kind: . differentiabilityArgumentList, collectionElementName: " Argument " ) ,
458
458
documentation: " The parameters for differentiation. "
459
459
) ,
@@ -477,33 +477,33 @@ public let ATTRIBUTE_NODES: [Node] = [
477
477
children: [
478
478
Child (
479
479
name: " kindSpecifier " ,
480
- deprecatedName: " DiffKind " ,
480
+ deprecatedName: " diffKind " ,
481
481
kind: . token( choices: [ . keyword( text: " _forward " ) , . keyword( text: " reverse " ) , . keyword( text: " _linear " ) ] ) ,
482
482
isOptional: true
483
483
) ,
484
484
Child (
485
485
name: " kindSpecifierComma " ,
486
- deprecatedName: " DiffKindComma " ,
486
+ deprecatedName: " diffKindComma " ,
487
487
kind: . token( choices: [ . token( . comma) ] ) ,
488
488
documentation: " The comma following the differentiability kind, if it exists. " ,
489
489
isOptional: true
490
490
) ,
491
491
Child (
492
492
name: " arguments " ,
493
- deprecatedName: " DiffParams " ,
493
+ deprecatedName: " diffParams " ,
494
494
kind: . node( kind: . differentiabilityWithRespectToArgument) ,
495
495
isOptional: true
496
496
) ,
497
497
Child (
498
498
name: " argumentsComma " ,
499
- deprecatedName: " DiffParamsComma " ,
499
+ deprecatedName: " diffParamsComma " ,
500
500
kind: . token( choices: [ . token( . comma) ] ) ,
501
501
documentation: " The comma following the differentiability arguments clause, if it exists. " ,
502
502
isOptional: true
503
503
) ,
504
504
Child (
505
505
name: " genericWhereClause " ,
506
- deprecatedName: " WhereClause " ,
506
+ deprecatedName: " whereClause " ,
507
507
kind: . node( kind: . genericWhereClause) ,
508
508
documentation: " A `where` clause that places additional constraints on generic parameters like `where T: Differentiable`. " ,
509
509
isOptional: true
@@ -581,7 +581,7 @@ public let ATTRIBUTE_NODES: [Node] = [
581
581
) ,
582
582
Child (
583
583
name: " declName " ,
584
- deprecatedName: " Declname " ,
584
+ deprecatedName: " declname " ,
585
585
kind: . node( kind: . declReferenceExpr)
586
586
) ,
587
587
]
@@ -640,7 +640,7 @@ public let ATTRIBUTE_NODES: [Node] = [
640
640
) ,
641
641
Child (
642
642
name: " declName " ,
643
- deprecatedName: " Declname " ,
643
+ deprecatedName: " declname " ,
644
644
kind: . node( kind: . declReferenceExpr) ,
645
645
nameForDiagnostics: " declaration name " ,
646
646
documentation: " The value for this argument "
@@ -802,7 +802,7 @@ public let ATTRIBUTE_NODES: [Node] = [
802
802
children: [
803
803
Child (
804
804
name: " targetLabel " ,
805
- deprecatedName: " Label " ,
805
+ deprecatedName: " label " ,
806
806
kind: . token( choices: [ . keyword( text: " target " ) ] ) ,
807
807
nameForDiagnostics: " label " ,
808
808
documentation: " The label of the argument "
@@ -814,7 +814,7 @@ public let ATTRIBUTE_NODES: [Node] = [
814
814
) ,
815
815
Child (
816
816
name: " declName " ,
817
- deprecatedName: " Declname " ,
817
+ deprecatedName: " declname " ,
818
818
kind: . node( kind: . declReferenceExpr) ,
819
819
nameForDiagnostics: " declaration name " ,
820
820
documentation: " The value for this argument "
0 commit comments