@@ -2778,7 +2778,8 @@ class CodeActionKind implements ToJsonable {
2778
2778
@override
2779
2779
int get hashCode => _value.hashCode;
2780
2780
2781
- bool operator ==(Object o) => o is CodeActionKind && o._value == _value;
2781
+ bool operator ==(Object other) =>
2782
+ other is CodeActionKind && other._value == _value;
2782
2783
}
2783
2784
2784
2785
class CodeActionLiteralSupportCodeActionKind implements ToJsonable {
@@ -3354,8 +3355,8 @@ class CodeActionTriggerKind implements ToJsonable {
3354
3355
@override
3355
3356
int get hashCode => _value.hashCode;
3356
3357
3357
- bool operator ==(Object o ) =>
3358
- o is CodeActionTriggerKind && o ._value == _value;
3358
+ bool operator ==(Object other ) =>
3359
+ other is CodeActionTriggerKind && other ._value == _value;
3359
3360
}
3360
3361
3361
3362
/// Structure to capture a description for an error code.
@@ -6192,7 +6193,8 @@ class CompletionItemKind implements ToJsonable {
6192
6193
@override
6193
6194
int get hashCode => _value.hashCode;
6194
6195
6195
- bool operator ==(Object o) => o is CompletionItemKind && o._value == _value;
6196
+ bool operator ==(Object other) =>
6197
+ other is CompletionItemKind && other._value == _value;
6196
6198
}
6197
6199
6198
6200
/// Additional details for a completion item label.
@@ -6385,7 +6387,8 @@ class CompletionItemTag implements ToJsonable {
6385
6387
@override
6386
6388
int get hashCode => _value.hashCode;
6387
6389
6388
- bool operator ==(Object o) => o is CompletionItemTag && o._value == _value;
6390
+ bool operator ==(Object other) =>
6391
+ other is CompletionItemTag && other._value == _value;
6389
6392
}
6390
6393
6391
6394
class CompletionItemTagSupport implements ToJsonable {
@@ -7563,8 +7566,8 @@ class CompletionTriggerKind implements ToJsonable {
7563
7566
@override
7564
7567
int get hashCode => _value.hashCode;
7565
7568
7566
- bool operator ==(Object o ) =>
7567
- o is CompletionTriggerKind && o ._value == _value;
7569
+ bool operator ==(Object other ) =>
7570
+ other is CompletionTriggerKind && other ._value == _value;
7568
7571
}
7569
7572
7570
7573
class ConfigurationItem implements ToJsonable {
@@ -10145,7 +10148,8 @@ class DiagnosticSeverity implements ToJsonable {
10145
10148
@override
10146
10149
int get hashCode => _value.hashCode;
10147
10150
10148
- bool operator ==(Object o) => o is DiagnosticSeverity && o._value == _value;
10151
+ bool operator ==(Object other) =>
10152
+ other is DiagnosticSeverity && other._value == _value;
10149
10153
}
10150
10154
10151
10155
/// The diagnostic tags.
@@ -10179,7 +10183,8 @@ class DiagnosticTag implements ToJsonable {
10179
10183
@override
10180
10184
int get hashCode => _value.hashCode;
10181
10185
10182
- bool operator ==(Object o) => o is DiagnosticTag && o._value == _value;
10186
+ bool operator ==(Object other) =>
10187
+ other is DiagnosticTag && other._value == _value;
10183
10188
}
10184
10189
10185
10190
/// Workspace client capabilities specific to diagnostic pull requests.
@@ -12065,8 +12070,8 @@ class DocumentDiagnosticReportKind implements ToJsonable {
12065
12070
@override
12066
12071
int get hashCode => _value.hashCode;
12067
12072
12068
- bool operator ==(Object o ) =>
12069
- o is DocumentDiagnosticReportKind && o ._value == _value;
12073
+ bool operator ==(Object other ) =>
12074
+ other is DocumentDiagnosticReportKind && other ._value == _value;
12070
12075
}
12071
12076
12072
12077
/// A partial result for a document diagnostic report.
@@ -12726,8 +12731,8 @@ class DocumentHighlightKind implements ToJsonable {
12726
12731
@override
12727
12732
int get hashCode => _value.hashCode;
12728
12733
12729
- bool operator ==(Object o ) =>
12730
- o is DocumentHighlightKind && o ._value == _value;
12734
+ bool operator ==(Object other ) =>
12735
+ other is DocumentHighlightKind && other ._value == _value;
12731
12736
}
12732
12737
12733
12738
class DocumentHighlightOptions implements WorkDoneProgressOptions, ToJsonable {
@@ -15514,7 +15519,8 @@ class ErrorCodes implements ToJsonable {
15514
15519
@override
15515
15520
int get hashCode => _value.hashCode;
15516
15521
15517
- bool operator ==(Object o) => o is ErrorCodes && o._value == _value;
15522
+ bool operator ==(Object other) =>
15523
+ other is ErrorCodes && other._value == _value;
15518
15524
}
15519
15525
15520
15526
class ExecuteCommandClientCapabilities implements ToJsonable {
@@ -16040,7 +16046,8 @@ class FailureHandlingKind implements ToJsonable {
16040
16046
@override
16041
16047
int get hashCode => _value.hashCode;
16042
16048
16043
- bool operator ==(Object o) => o is FailureHandlingKind && o._value == _value;
16049
+ bool operator ==(Object other) =>
16050
+ other is FailureHandlingKind && other._value == _value;
16044
16051
}
16045
16052
16046
16053
/// The file event type.
@@ -16071,7 +16078,8 @@ class FileChangeType implements ToJsonable {
16071
16078
@override
16072
16079
int get hashCode => _value.hashCode;
16073
16080
16074
- bool operator ==(Object o) => o is FileChangeType && o._value == _value;
16081
+ bool operator ==(Object other) =>
16082
+ other is FileChangeType && other._value == _value;
16075
16083
}
16076
16084
16077
16085
/// Represents information on a file/folder create.
@@ -16980,8 +16988,8 @@ class FileOperationPatternKind implements ToJsonable {
16980
16988
@override
16981
16989
int get hashCode => _value.hashCode;
16982
16990
16983
- bool operator ==(Object o ) =>
16984
- o is FileOperationPatternKind && o ._value == _value;
16991
+ bool operator ==(Object other ) =>
16992
+ other is FileOperationPatternKind && other ._value == _value;
16985
16993
}
16986
16994
16987
16995
/// Matching options for the file operation pattern.
@@ -17873,7 +17881,8 @@ class FoldingRangeKind implements ToJsonable {
17873
17881
@override
17874
17882
int get hashCode => _value.hashCode;
17875
17883
17876
- bool operator ==(Object o) => o is FoldingRangeKind && o._value == _value;
17884
+ bool operator ==(Object other) =>
17885
+ other is FoldingRangeKind && other._value == _value;
17877
17886
}
17878
17887
17879
17888
class FoldingRangeOptions implements WorkDoneProgressOptions, ToJsonable {
@@ -20823,7 +20832,8 @@ class InlayHintKind implements ToJsonable {
20823
20832
@override
20824
20833
int get hashCode => _value.hashCode;
20825
20834
20826
- bool operator ==(Object o) => o is InlayHintKind && o._value == _value;
20835
+ bool operator ==(Object other) =>
20836
+ other is InlayHintKind && other._value == _value;
20827
20837
}
20828
20838
20829
20839
/// An inlay hint label part allows for interactive and composite labels of
@@ -22529,7 +22539,8 @@ class InsertTextFormat implements ToJsonable {
22529
22539
@override
22530
22540
int get hashCode => _value.hashCode;
22531
22541
22532
- bool operator ==(Object o) => o is InsertTextFormat && o._value == _value;
22542
+ bool operator ==(Object other) =>
22543
+ other is InsertTextFormat && other._value == _value;
22533
22544
}
22534
22545
22535
22546
/// How whitespace and indentation is handled during completion item insertion.
@@ -22566,7 +22577,8 @@ class InsertTextMode implements ToJsonable {
22566
22577
@override
22567
22578
int get hashCode => _value.hashCode;
22568
22579
22569
- bool operator ==(Object o) => o is InsertTextMode && o._value == _value;
22580
+ bool operator ==(Object other) =>
22581
+ other is InsertTextMode && other._value == _value;
22570
22582
}
22571
22583
22572
22584
class LinkedEditingRangeClientCapabilities implements ToJsonable {
@@ -23780,7 +23792,8 @@ class MarkupKind implements ToJsonable {
23780
23792
@override
23781
23793
int get hashCode => _value.hashCode;
23782
23794
23783
- bool operator ==(Object o) => o is MarkupKind && o._value == _value;
23795
+ bool operator ==(Object other) =>
23796
+ other is MarkupKind && other._value == _value;
23784
23797
}
23785
23798
23786
23799
class MessageActionItem implements ToJsonable {
@@ -23881,7 +23894,8 @@ class MessageType implements ToJsonable {
23881
23894
@override
23882
23895
int get hashCode => _value.hashCode;
23883
23896
23884
- bool operator ==(Object o) => o is MessageType && o._value == _value;
23897
+ bool operator ==(Object other) =>
23898
+ other is MessageType && other._value == _value;
23885
23899
}
23886
23900
23887
23901
/// Valid LSP methods known at the time of code generation from the spec.
@@ -24207,7 +24221,7 @@ class Method implements ToJsonable {
24207
24221
@override
24208
24222
int get hashCode => _value.hashCode;
24209
24223
24210
- bool operator ==(Object o ) => o is Method && o ._value == _value;
24224
+ bool operator ==(Object other ) => other is Method && other ._value == _value;
24211
24225
}
24212
24226
24213
24227
/// Moniker definition to match LSIF 0.5 moniker definition.
@@ -24457,7 +24471,8 @@ class MonikerKind implements ToJsonable {
24457
24471
@override
24458
24472
int get hashCode => _value.hashCode;
24459
24473
24460
- bool operator ==(Object o) => o is MonikerKind && o._value == _value;
24474
+ bool operator ==(Object other) =>
24475
+ other is MonikerKind && other._value == _value;
24461
24476
}
24462
24477
24463
24478
class MonikerOptions implements WorkDoneProgressOptions, ToJsonable {
@@ -25084,7 +25099,8 @@ class NotebookCellKind implements ToJsonable {
25084
25099
@override
25085
25100
int get hashCode => _value.hashCode;
25086
25101
25087
- bool operator ==(Object o) => o is NotebookCellKind && o._value == _value;
25102
+ bool operator ==(Object other) =>
25103
+ other is NotebookCellKind && other._value == _value;
25088
25104
}
25089
25105
25090
25106
/// A notebook cell text document filter denotes a cell text document by
@@ -27720,7 +27736,8 @@ class PositionEncodingKind implements ToJsonable {
27720
27736
@override
27721
27737
int get hashCode => _value.hashCode;
27722
27738
27723
- bool operator ==(Object o) => o is PositionEncodingKind && o._value == _value;
27739
+ bool operator ==(Object other) =>
27740
+ other is PositionEncodingKind && other._value == _value;
27724
27741
}
27725
27742
27726
27743
class PrepareRenameParams implements TextDocumentPositionParams, ToJsonable {
@@ -27846,8 +27863,8 @@ class PrepareSupportDefaultBehavior implements ToJsonable {
27846
27863
@override
27847
27864
int get hashCode => _value.hashCode;
27848
27865
27849
- bool operator ==(Object o ) =>
27850
- o is PrepareSupportDefaultBehavior && o ._value == _value;
27866
+ bool operator ==(Object other ) =>
27867
+ other is PrepareSupportDefaultBehavior && other ._value == _value;
27851
27868
}
27852
27869
27853
27870
/// A previous result id in a workspace pull request.
@@ -30646,8 +30663,8 @@ class ResourceOperationKind implements ToJsonable {
30646
30663
@override
30647
30664
int get hashCode => _value.hashCode;
30648
30665
30649
- bool operator ==(Object o ) =>
30650
- o is ResourceOperationKind && o ._value == _value;
30666
+ bool operator ==(Object other ) =>
30667
+ other is ResourceOperationKind && other ._value == _value;
30651
30668
}
30652
30669
30653
30670
class SaveOptions implements ToJsonable {
@@ -31255,8 +31272,8 @@ class SemanticTokenModifiers implements ToJsonable {
31255
31272
@override
31256
31273
int get hashCode => _value.hashCode;
31257
31274
31258
- bool operator ==(Object o ) =>
31259
- o is SemanticTokenModifiers && o ._value == _value;
31275
+ bool operator ==(Object other ) =>
31276
+ other is SemanticTokenModifiers && other ._value == _value;
31260
31277
}
31261
31278
31262
31279
class SemanticTokenTypes implements ToJsonable {
@@ -31303,7 +31320,8 @@ class SemanticTokenTypes implements ToJsonable {
31303
31320
@override
31304
31321
int get hashCode => _value.hashCode;
31305
31322
31306
- bool operator ==(Object o) => o is SemanticTokenTypes && o._value == _value;
31323
+ bool operator ==(Object other) =>
31324
+ other is SemanticTokenTypes && other._value == _value;
31307
31325
}
31308
31326
31309
31327
class SemanticTokens implements ToJsonable {
@@ -36599,8 +36617,8 @@ class SignatureHelpTriggerKind implements ToJsonable {
36599
36617
@override
36600
36618
int get hashCode => _value.hashCode;
36601
36619
36602
- bool operator ==(Object o ) =>
36603
- o is SignatureHelpTriggerKind && o ._value == _value;
36620
+ bool operator ==(Object other ) =>
36621
+ other is SignatureHelpTriggerKind && other ._value == _value;
36604
36622
}
36605
36623
36606
36624
/// Represents the signature of something callable. A signature can have a
@@ -37200,7 +37218,8 @@ class SymbolKind implements ToJsonable {
37200
37218
@override
37201
37219
int get hashCode => _value.hashCode;
37202
37220
37203
- bool operator ==(Object o) => o is SymbolKind && o._value == _value;
37221
+ bool operator ==(Object other) =>
37222
+ other is SymbolKind && other._value == _value;
37204
37223
}
37205
37224
37206
37225
/// Symbol tags are extra annotations that tweak the rendering of a symbol.
@@ -37226,7 +37245,8 @@ class SymbolTag implements ToJsonable {
37226
37245
@override
37227
37246
int get hashCode => _value.hashCode;
37228
37247
37229
- bool operator ==(Object o) => o is SymbolTag && o._value == _value;
37248
+ bool operator ==(Object other) =>
37249
+ other is SymbolTag && other._value == _value;
37230
37250
}
37231
37251
37232
37252
/// Describe options to be used when registering for text document change
@@ -39232,8 +39252,8 @@ class TextDocumentSaveReason implements ToJsonable {
39232
39252
@override
39233
39253
int get hashCode => _value.hashCode;
39234
39254
39235
- bool operator ==(Object o ) =>
39236
- o is TextDocumentSaveReason && o ._value == _value;
39255
+ bool operator ==(Object other ) =>
39256
+ other is TextDocumentSaveReason && other ._value == _value;
39237
39257
}
39238
39258
39239
39259
class TextDocumentSaveRegistrationOptions
@@ -39503,7 +39523,8 @@ class TextDocumentSyncKind implements ToJsonable {
39503
39523
@override
39504
39524
int get hashCode => _value.hashCode;
39505
39525
39506
- bool operator ==(Object o) => o is TextDocumentSyncKind && o._value == _value;
39526
+ bool operator ==(Object other) =>
39527
+ other is TextDocumentSyncKind && other._value == _value;
39507
39528
}
39508
39529
39509
39530
class TextDocumentSyncOptions implements ToJsonable {
@@ -39802,7 +39823,8 @@ class TokenFormat implements ToJsonable {
39802
39823
@override
39803
39824
int get hashCode => _value.hashCode;
39804
39825
39805
- bool operator ==(Object o) => o is TokenFormat && o._value == _value;
39826
+ bool operator ==(Object other) =>
39827
+ other is TokenFormat && other._value == _value;
39806
39828
}
39807
39829
39808
39830
class TypeDefinitionClientCapabilities implements ToJsonable {
@@ -41297,7 +41319,8 @@ class UniquenessLevel implements ToJsonable {
41297
41319
@override
41298
41320
int get hashCode => _value.hashCode;
41299
41321
41300
- bool operator ==(Object o) => o is UniquenessLevel && o._value == _value;
41322
+ bool operator ==(Object other) =>
41323
+ other is UniquenessLevel && other._value == _value;
41301
41324
}
41302
41325
41303
41326
/// General parameters to unregister a capability.
@@ -41708,7 +41731,8 @@ class WatchKind implements ToJsonable {
41708
41731
@override
41709
41732
int get hashCode => _value.hashCode;
41710
41733
41711
- bool operator ==(Object o) => o is WatchKind && o._value == _value;
41734
+ bool operator ==(Object other) =>
41735
+ other is WatchKind && other._value == _value;
41712
41736
}
41713
41737
41714
41738
/// The parameters send in a will save text document notification.
0 commit comments