Skip to content

Commit

Permalink
provideDocumentSemanticTokens should not return SemanticTokensEdits
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima committed Jan 21, 2020
1 parent 5d591a6 commit 65ff40c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/vscode.proposed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ declare module 'vscode' {
* [ 2,5,3,0,3, 0,5,4,1,0, 3,2,7,2,0 ]
* ```
*/
provideDocumentSemanticTokens(document: TextDocument, token: CancellationToken): ProviderResult<SemanticTokens | SemanticTokensEdits>;
provideDocumentSemanticTokens(document: TextDocument, token: CancellationToken): ProviderResult<SemanticTokens>;

/**
* Instead of always returning all the tokens in a file, it is possible for a `DocumentSemanticTokensProvider` to implement
Expand Down

0 comments on commit 65ff40c

Please sign in to comment.