Skip to content

Commit

Permalink
test upgrading
Browse files Browse the repository at this point in the history
  • Loading branch information
dibarbet committed Oct 30, 2024
1 parent 3847c4a commit d76ff3c
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 59 deletions.
128 changes: 75 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@
"tmp": "0.0.33",
"uuid": "^9.0.0",
"vscode-html-languageservice": "^5.0.1",
"vscode-jsonrpc": "8.2.0-next.0",
"vscode-languageclient": "8.2.0-next.1",
"vscode-languageserver-protocol": "3.17.4-next.1",
"vscode-jsonrpc": "8.2.1",
"vscode-languageclient": "9.0.1",
"vscode-languageserver-protocol": "3.17.5",
"vscode-languageserver-textdocument": "^1.0.5",
"vscode-nls": "5.0.1",
"yauzl": "2.10.0"
Expand Down
3 changes: 3 additions & 0 deletions src/lsptoolshost/onAutoInsertFeature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ export class OnAutoInsertFeature implements DynamicFeature<RoslynProtocol.OnAuto
RoslynProtocol.OnAutoInsertRegistrationOptions
>(RoslynProtocol.OnAutoInsertRequest.method);
}
clear(): void {
this._registrations.clear();
}
fillInitializeParams?: ((params: InitializeParams) => void) | undefined;
preInitialize?:
| ((capabilities: ServerCapabilities<any>, documentSelector: DocumentSelector | undefined) => void)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ async function getCodeActions(
): Promise<vscode.CodeAction[]> {
const uri = vscode.window.activeTextEditor!.document.uri;
console.log(`Getting actions for ${uri.toString()}`);
await new Promise((r) => setTimeout(r, 5000));
const codeActions = await vscode.commands.executeCommand<vscode.CodeAction[]>(
'vscode.executeCodeActionProvider',
uri,
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"module": "Node16",
"outDir": "out",
"lib": [
"ES2021"
],
"sourceMap": true,
"moduleResolution": "node",
"moduleResolution": "Node16",
"moduleDetection": "force",
"strict": true,
"forceConsistentCasingInFileNames": true,
Expand Down

0 comments on commit d76ff3c

Please sign in to comment.