Skip to content

Commit 5062c09

Browse files
committed
Bump vscode in package.json
1 parent 7c40878 commit 5062c09

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

editors/code/package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

editors/code/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"Programming Languages"
2222
],
2323
"engines": {
24-
"vscode": "^1.62.0"
24+
"vscode": "^1.63.0"
2525
},
2626
"enableProposedApi": true,
2727
"scripts": {
@@ -44,7 +44,7 @@
4444
},
4545
"devDependencies": {
4646
"@types/node": "~14.17.5",
47-
"@types/vscode": "~1.62.0",
47+
"@types/vscode": "~1.63.0",
4848
"@typescript-eslint/eslint-plugin": "^5.5.0",
4949
"@typescript-eslint/parser": "^5.5.0",
5050
"@vscode/test-electron": "^1.6.2",

editors/code/src/ast_inspector.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class AstInspector implements vscode.HoverProvider, vscode.DefinitionProv
5959
}
6060
}
6161

62-
private onDidChangeVisibleTextEditors(editors: vscode.TextEditor[]) {
62+
private onDidChangeVisibleTextEditors(editors: readonly vscode.TextEditor[]) {
6363
if (!this.findAstTextEditor()) {
6464
this.setRustEditor(undefined);
6565
return;

editors/code/src/lsp_ext.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export interface SsrParams {
125125
parseOnly: boolean;
126126
textDocument: lc.TextDocumentIdentifier;
127127
position: lc.Position;
128-
selections: lc.Range[];
128+
selections: readonly lc.Range[];
129129
}
130130
export const ssr = new lc.RequestType<SsrParams, lc.WorkspaceEdit, void>('experimental/ssr');
131131

0 commit comments

Comments
 (0)