diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2019-12-08 20:27:50 +0200 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2019-12-08 20:39:22 +0200 |
| commit | c7dc067104c602e18264be0fab2eb197366ac827 (patch) | |
| tree | 9df694bec2690ac30d4049b2af4eb42b0e966c8f /editors/code/src | |
| parent | 6b1c2ee168151db07e42403c37106491ff45c5e6 (diff) | |
| download | rust-c7dc067104c602e18264be0fab2eb197366ac827.tar.gz rust-c7dc067104c602e18264be0fab2eb197366ac827.zip | |
Code: bump deps
Diffstat (limited to 'editors/code/src')
| -rw-r--r-- | editors/code/src/extension.ts | 7 | ||||
| -rw-r--r-- | editors/code/src/highlighting.ts | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts index 6637c3bf0bd..a78aa3b4259 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 d21d8a06af5..48f2a2547d7 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'), |
