From c7dc067104c602e18264be0fab2eb197366ac827 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Sun, 8 Dec 2019 20:27:50 +0200 Subject: Code: bump deps --- editors/code/src/extension.ts | 7 ++++--- editors/code/src/highlighting.ts | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts index 6637c3bf0..a78aa3b42 100644 --- a/editors/code/src/extension.ts +++ b/editors/code/src/extension.ts @@ -89,9 +89,10 @@ export async function activate(context: vscode.ExtensionContext) { } // Notifications are events triggered by the language server - const allNotifications: Iterable< - [string, lc.GenericNotificationHandler] - > = [ + const allNotifications: Iterable<[ + string, + lc.GenericNotificationHandler + ]> = [ [ 'rust-analyzer/publishDecorations', notifications.publishDecorations.handle diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts index d21d8a06a..48f2a2547 100644 --- a/editors/code/src/highlighting.ts +++ b/editors/code/src/highlighting.ts @@ -40,9 +40,10 @@ export class Highlighter { return [tag, decor]; }; - const decorations: Iterable< - [string, vscode.TextEditorDecorationType] - > = [ + const decorations: Iterable<[ + string, + vscode.TextEditorDecorationType + ]> = [ decoration('comment'), decoration('string'), decoration('keyword'), -- cgit v1.2.3