Skip to content

Commit adda5a6

Browse files
committed
Remove proposed state from since tag
1 parent 31664dc commit adda5a6

15 files changed

+106
-106
lines changed

client/src/common/callHierarchy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export interface CallHierarchyOutgoingCallsSignature {
3838
/**
3939
* Call hierarchy middleware
4040
*
41-
* @since 3.16.0 - proposed state
41+
* @since 3.16.0
4242
*/
4343
export interface CallHierarchyMiddleware {
4444
prepareCallHierarchy?: (this: void, document: TextDocument, positions: VPosition, token: CancellationToken, next: PrepareCallHierarchySignature) => ProviderResult<VCallHierarchyItem | VCallHierarchyItem[]>;

client/src/common/fileOperations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function assign<T, K extends keyof T>(target: T, key: K, value: T[K]): void {
2828
/**
2929
* File operation middleware
3030
*
31-
* @since 3.16.0 - proposed state
31+
* @since 3.16.0
3232
*/
3333
export interface FileOperationsMiddleware {
3434
didCreateFiles?: NextSignature<code.FileCreateEvent, void>;

client/src/common/linkedEditingRange.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface ProvideLinkedEditingRangeSignature {
2323
/**
2424
* Linked editing middleware
2525
*
26-
* @since 3.16.0 - proposed state
26+
* @since 3.16.0
2727
*/
2828
export interface LinkedEditingRangeMiddleware {
2929
provideLinkedEditingRange?: (this: void, document: code.TextDocument, position: code.Position, token: code.CancellationToken, next: ProvideLinkedEditingRangeSignature) => code.ProviderResult<code.LinkedEditingRanges>;

client/src/common/semanticTokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export interface DocumentRangeSemanticTokensSignature {
3535
/**
3636
* The semantic token middleware
3737
*
38-
* @since 3.16.0 - proposed state
38+
* @since 3.16.0
3939
*/
4040
export interface SemanticTokensMiddleware {
4141
provideDocumentSemanticTokens?: (this: void, document: vscode.TextDocument, token: vscode.CancellationToken, next: DocumentSemanticsTokensSignature) => vscode.ProviderResult<vscode.SemanticTokens>;

protocol/src/common/protocol.fileOperations.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ProtocolNotificationType, ProtocolRequestType } from './messages';
1010
/**
1111
* Options for notifications/requests for user operations on files.
1212
*
13-
* @since 3.16.0 - proposed state
13+
* @since 3.16.0
1414
*/
1515
export interface FileOperationOptions {
1616

@@ -48,7 +48,7 @@ export interface FileOperationOptions {
4848
/**
4949
* The options to register for file operations.
5050
*
51-
* @since 3.16.0 - proposed state
51+
* @since 3.16.0
5252
*/
5353
export interface FileOperationRegistrationOptions {
5454

@@ -62,7 +62,7 @@ export interface FileOperationRegistrationOptions {
6262
* A pattern kind describing if a glob pattern matches a file a folder or
6363
* both.
6464
*
65-
* @since 3.16.0 - proposed state
65+
* @since 3.16.0
6666
*/
6767
export namespace FileOperationPatternKind {
6868

@@ -82,7 +82,7 @@ export type FileOperationPatternKind = 'file' | 'folder';
8282
/**
8383
* Matching options for the file operation pattern.
8484
*
85-
* @since 3.16.0 - proposed state
85+
* @since 3.16.0
8686
*/
8787
export interface FileOperationPatternOptions {
8888

@@ -96,7 +96,7 @@ export interface FileOperationPatternOptions {
9696
* A pattern to describe in which file operation requests or notifications
9797
* the server is interested in.
9898
*
99-
* @since 3.16.0 - proposed state
99+
* @since 3.16.0
100100
*/
101101
interface FileOperationPattern {
102102

@@ -149,7 +149,7 @@ export interface FileOperationFilter {
149149
* These events do not come from the file system, they come from user operations
150150
* like renaming a file in the UI.
151151
*
152-
* @since 3.16.0 - proposed state
152+
* @since 3.16.0
153153
*/
154154
export interface FileOperationClientCapabilities {
155155

@@ -192,7 +192,7 @@ export interface FileOperationClientCapabilities {
192192
/**
193193
* The parameters sent in file create requests/notifications.
194194
*
195-
* @since 3.16.0 - proposed state
195+
* @since 3.16.0
196196
*/
197197
export interface CreateFilesParams {
198198

@@ -205,7 +205,7 @@ export interface CreateFilesParams {
205205
/**
206206
* Represents information on a file/folder create.
207207
*
208-
* @since 3.16.0 - proposed state
208+
* @since 3.16.0
209209
*/
210210
export interface FileCreate {
211211

@@ -218,7 +218,7 @@ export interface FileCreate {
218218
/**
219219
* The parameters sent in file rename requests/notifications.
220220
*
221-
* @since 3.16.0 - proposed state
221+
* @since 3.16.0
222222
*/
223223
export interface RenameFilesParams {
224224

@@ -232,7 +232,7 @@ export interface RenameFilesParams {
232232
/**
233233
* Represents information on a file/folder rename.
234234
*
235-
* @since 3.16.0 - proposed state
235+
* @since 3.16.0
236236
*/
237237
export interface FileRename {
238238

@@ -250,7 +250,7 @@ export interface FileRename {
250250
/**
251251
* The parameters sent in file delete requests/notifications.
252252
*
253-
* @since 3.16.0 - proposed state
253+
* @since 3.16.0
254254
*/
255255
export interface DeleteFilesParams {
256256

@@ -263,7 +263,7 @@ export interface DeleteFilesParams {
263263
/**
264264
* Represents information on a file/folder delete.
265265
*
266-
* @since 3.16.0 - proposed state
266+
* @since 3.16.0
267267
*/
268268
export interface FileDelete {
269269

@@ -278,7 +278,7 @@ export interface FileDelete {
278278
* The will create files request is sent from the client to the server before files are actually
279279
* created as long as the creation is triggered from within the client.
280280
*
281-
* @since 3.16.0 - proposed state
281+
* @since 3.16.0
282282
*/
283283
export namespace WillCreateFilesRequest {
284284
export const method: 'workspace/willCreateFiles' = 'workspace/willCreateFiles';
@@ -290,7 +290,7 @@ export namespace WillCreateFilesRequest {
290290
* The did create files notification is sent from the client to the server when
291291
* files were created from within the client.
292292
*
293-
* @since 3.16.0 - proposed state
293+
* @since 3.16.0
294294
*/
295295
export namespace DidCreateFilesNotification {
296296
export const method: 'workspace/didCreateFiles' = 'workspace/didCreateFiles';
@@ -302,7 +302,7 @@ export namespace DidCreateFilesNotification {
302302
* The will rename files request is sent from the client to the server before files are actually
303303
* renamed as long as the rename is triggered from within the client.
304304
*
305-
* @since 3.16.0 - proposed state
305+
* @since 3.16.0
306306
*/
307307
export namespace WillRenameFilesRequest {
308308
export const method: 'workspace/willRenameFiles' = 'workspace/willRenameFiles';
@@ -314,7 +314,7 @@ export namespace WillRenameFilesRequest {
314314
* The did rename files notification is sent from the client to the server when
315315
* files were renamed from within the client.
316316
*
317-
* @since 3.16.0 - proposed state
317+
* @since 3.16.0
318318
*/
319319
export namespace DidRenameFilesNotification {
320320
export const method: 'workspace/didRenameFiles' = 'workspace/didRenameFiles';
@@ -326,7 +326,7 @@ export namespace DidRenameFilesNotification {
326326
* The will delete files request is sent from the client to the server before files are actually
327327
* deleted as long as the deletion is triggered from within the client.
328328
*
329-
* @since 3.16.0 - proposed state
329+
* @since 3.16.0
330330
*/
331331
export namespace DidDeleteFilesNotification {
332332
export const method: 'workspace/didDeleteFiles' = 'workspace/didDeleteFiles';
@@ -338,7 +338,7 @@ export namespace DidDeleteFilesNotification {
338338
* The did delete files notification is sent from the client to the server when
339339
* files were deleted from within the client.
340340
*
341-
* @since 3.16.0 - proposed state
341+
* @since 3.16.0
342342
*/
343343
export namespace WillDeleteFilesRequest {
344344
export const method: 'workspace/willDeleteFiles' = 'workspace/willDeleteFiles';

protocol/src/common/protocol.linkedEditingRange.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { StaticRegistrationOptions, TextDocumentPositionParams, TextDocumentRegi
1212
/**
1313
* Client capabilities for the linked editing range request.
1414
*
15-
* @since 3.16.0 - proposed state
15+
* @since 3.16.0
1616
*/
1717
export interface LinkedEditingRangeClientCapabilities {
1818
/**
@@ -35,7 +35,7 @@ export interface LinkedEditingRangeRegistrationOptions extends TextDocumentRegis
3535
/**
3636
* The result of a linked editing range request.
3737
*
38-
* @since 3.16.0 - proposed state
38+
* @since 3.16.0
3939
*/
4040
export interface LinkedEditingRanges {
4141
/**
@@ -55,7 +55,7 @@ export interface LinkedEditingRanges {
5555
/**
5656
* A request to provide ranges that can be edited together.
5757
*
58-
* @since 3.16.0 - proposed state
58+
* @since 3.16.0
5959
*/
6060
export namespace LinkedEditingRangeRequest {
6161
export const method: 'textDocument/linkedEditingRange' = 'textDocument/linkedEditingRange';

protocol/src/common/protocol.semanticTokens.ts

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions, T
1414
* an clients can specify additional token types via the
1515
* corresponding client capabilities.
1616
*
17-
* @since 3.16.0 - Proposed state
17+
* @since 3.16.0
1818
*/
1919
export enum SemanticTokenTypes {
2020
namespace = 'namespace',
@@ -50,7 +50,7 @@ export enum SemanticTokenTypes {
5050
* an clients can specify additional token types via the
5151
* corresponding client capabilities.
5252
*
53-
* @since 3.16.0 - Proposed state
53+
* @since 3.16.0
5454
*/
5555
export enum SemanticTokenModifiers {
5656
declaration = 'declaration',
@@ -66,7 +66,7 @@ export enum SemanticTokenModifiers {
6666
}
6767

6868
/**
69-
* @since 3.16.0 - Proposed state
69+
* @since 3.16.0
7070
*/
7171
export interface SemanticTokensLegend {
7272
/**
@@ -81,7 +81,7 @@ export interface SemanticTokensLegend {
8181
}
8282

8383
/**
84-
* @since 3.16.0 - Proposed state
84+
* @since 3.16.0
8585
*/
8686
export interface SemanticTokens {
8787
/**
@@ -99,7 +99,7 @@ export interface SemanticTokens {
9999
}
100100

101101
/**
102-
* @since 3.16.0 - Proposed state
102+
* @since 3.16.0
103103
*/
104104
export namespace SemanticTokens {
105105
export function is(value: any): value is SemanticTokens {
@@ -110,14 +110,14 @@ export namespace SemanticTokens {
110110
}
111111

112112
/**
113-
* @since 3.16.0 - Proposed state
113+
* @since 3.16.0
114114
*/
115115
export interface SemanticTokensPartialResult {
116116
data: uinteger[];
117117
}
118118

119119
/**
120-
* @since 3.16.0 - Proposed state
120+
* @since 3.16.0
121121
*/
122122
export interface SemanticTokensEdit {
123123
/**
@@ -137,7 +137,7 @@ export interface SemanticTokensEdit {
137137
}
138138

139139
/**
140-
* @since 3.16.0 - Proposed state
140+
* @since 3.16.0
141141
*/
142142
export interface SemanticTokensDelta {
143143
readonly resultId?: string;
@@ -148,7 +148,7 @@ export interface SemanticTokensDelta {
148148
}
149149

150150
/**
151-
* @since 3.16.0 - Proposed state
151+
* @since 3.16.0
152152
*/
153153
export interface SemanticTokensDeltaPartialResult {
154154
edits: SemanticTokensEdit[]
@@ -163,7 +163,7 @@ export namespace TokenFormat {
163163
export type TokenFormat = 'relative';
164164

165165
/**
166-
* @since 3.16.0 - Proposed state
166+
* @since 3.16.0
167167
*/
168168
export interface SemanticTokensClientCapabilities {
169169
/**
@@ -233,7 +233,7 @@ export interface SemanticTokensClientCapabilities {
233233
}
234234

235235
/**
236-
* @since 3.16.0 - Proposed state
236+
* @since 3.16.0
237237
*/
238238
export interface SemanticTokensOptions extends WorkDoneProgressOptions {
239239
/**
@@ -260,7 +260,7 @@ export interface SemanticTokensOptions extends WorkDoneProgressOptions {
260260
}
261261

262262
/**
263-
* @since 3.16.0 - Proposed state
263+
* @since 3.16.0
264264
*/
265265
export interface SemanticTokensRegistrationOptions extends TextDocumentRegistrationOptions, SemanticTokensOptions, StaticRegistrationOptions {
266266
}
@@ -273,7 +273,7 @@ export namespace SemanticTokensRegistrationType {
273273
//------- 'textDocument/semanticTokens' -----
274274

275275
/**
276-
* @since 3.16.0 - Proposed state
276+
* @since 3.16.0
277277
*/
278278
export interface SemanticTokensParams extends WorkDoneProgressParams, PartialResultParams {
279279
/**
@@ -283,7 +283,7 @@ export interface SemanticTokensParams extends WorkDoneProgressParams, PartialRes
283283
}
284284

285285
/**
286-
* @since 3.16.0 - Proposed state
286+
* @since 3.16.0
287287
*/
288288
export namespace SemanticTokensRequest {
289289
export const method: 'textDocument/semanticTokens/full' = 'textDocument/semanticTokens/full';
@@ -294,7 +294,7 @@ export namespace SemanticTokensRequest {
294294
//------- 'textDocument/semanticTokens/edits' -----
295295

296296
/**
297-
* @since 3.16.0 - Proposed state
297+
* @since 3.16.0
298298
*/
299299
export interface SemanticTokensDeltaParams extends WorkDoneProgressParams, PartialResultParams {
300300
/**
@@ -310,7 +310,7 @@ export interface SemanticTokensDeltaParams extends WorkDoneProgressParams, Parti
310310
}
311311

312312
/**
313-
* @since 3.16.0 - Proposed state
313+
* @since 3.16.0
314314
*/
315315
export namespace SemanticTokensDeltaRequest {
316316
export const method: 'textDocument/semanticTokens/full/delta' = 'textDocument/semanticTokens/full/delta';
@@ -321,7 +321,7 @@ export namespace SemanticTokensDeltaRequest {
321321
//------- 'textDocument/semanticTokens/range' -----
322322

323323
/**
324-
* @since 3.16.0 - Proposed state
324+
* @since 3.16.0
325325
*/
326326
export interface SemanticTokensRangeParams extends WorkDoneProgressParams, PartialResultParams {
327327
/**
@@ -336,7 +336,7 @@ export interface SemanticTokensRangeParams extends WorkDoneProgressParams, Parti
336336
}
337337

338338
/**
339-
* @since 3.16.0 - Proposed state
339+
* @since 3.16.0
340340
*/
341341
export namespace SemanticTokensRangeRequest {
342342
export const method: 'textDocument/semanticTokens/range' = 'textDocument/semanticTokens/range';
@@ -360,7 +360,7 @@ export interface SemanticTokensWorkspaceClientCapabilities {
360360
}
361361

362362
/**
363-
* @since 3.16.0 - Proposed state
363+
* @since 3.16.0
364364
*/
365365
export namespace SemanticTokensRefreshRequest {
366366
export const method: `workspace/semanticTokens/refresh` = `workspace/semanticTokens/refresh`;

0 commit comments

Comments
 (0)