@@ -629,7 +629,7 @@ class CompletionItemKindCapabilities {
629
629
@JsonRpcData
630
630
class CompletionListCapabilities {
631
631
/**
632
- * The client supports the the following itemDefaults on
632
+ * The client supports the following itemDefaults on
633
633
* a completion list.
634
634
* <p >
635
635
* The value lists the supported property names of the
@@ -3125,6 +3125,12 @@ class CompletionItemDefaults {
3125
3125
*/
3126
3126
InsertTextMode insertTextMode
3127
3127
3128
+ /**
3129
+ * A default data value.
3130
+ */
3131
+ @JsonAdapter(JsonElementTypeAdapter . Factory )
3132
+ Object data
3133
+
3128
3134
new () {
3129
3135
}
3130
3136
}
@@ -5136,7 +5142,7 @@ class LocationLink {
5136
5142
5137
5143
/**
5138
5144
* The range that should be selected and revealed when this link is being followed, e.g the name of a function.
5139
- * Must be contained by the the {@link #targetRange}. See also {@link DocumentSymbol#range}
5145
+ * Must be contained by the {@link #targetRange}. See also {@link DocumentSymbol#range}
5140
5146
*/
5141
5147
@NonNull
5142
5148
Range targetSelectionRange
@@ -5465,7 +5471,7 @@ class ReferenceParams extends TextDocumentPositionAndWorkDoneProgressAndPartialR
5465
5471
* Since 3.12.0
5466
5472
*/
5467
5473
@JsonRpcData
5468
- class PrepareRenameParams extends TextDocumentPositionParams {
5474
+ class PrepareRenameParams extends TextDocumentPositionAndWorkDoneProgressParams {
5469
5475
new () {
5470
5476
}
5471
5477
@@ -5660,6 +5666,11 @@ final class SemanticTokenTypes {
5660
5666
5661
5667
public static val Operator = ' operator'
5662
5668
5669
+ /**
5670
+ * Since 3.17.0
5671
+ */
5672
+ public static val Decorator = ' decorator'
5673
+
5663
5674
private new () {
5664
5675
}
5665
5676
}
@@ -6587,8 +6598,8 @@ class DocumentSymbol {
6587
6598
6588
6599
/**
6589
6600
* The range enclosing this symbol not including leading/trailing whitespace but everything else
6590
- * like comments. This information is typically used to determine if the clients cursor is
6591
- * inside the symbol to reveal in the symbol in the UI.
6601
+ * like comments. This information is typically used to determine if the client's cursor is
6602
+ * inside the symbol to reveal the symbol in the UI.
6592
6603
*/
6593
6604
@NonNull
6594
6605
Range range
@@ -8809,15 +8820,15 @@ class CallHierarchyItem {
8809
8820
8810
8821
/**
8811
8822
* The range enclosing this symbol not including leading/trailing whitespace but everything else
8812
- * like comments. This information is typically used to determine if the the clients cursor is
8813
- * inside the symbol to reveal in the symbol in the UI.
8823
+ * like comments. This information is typically used to determine if the client's cursor is
8824
+ * inside the symbol to reveal the symbol in the UI.
8814
8825
*/
8815
8826
@NonNull
8816
8827
Range range
8817
8828
8818
8829
/**
8819
8830
* The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.
8820
- * Must be contained by the the {@link CallHierarchyItem#getRange range }.
8831
+ * Must be contained by the {@link CallHierarchyItem#getRange range }.
8821
8832
*/
8822
8833
@NonNull
8823
8834
Range selectionRange
0 commit comments