Code: bump deps

This commit is contained in:
Laurențiu Nicola
2019-12-08 20:27:50 +02:00
parent 6b1c2ee168
commit c7dc067104
4 changed files with 253 additions and 418 deletions

View File

@@ -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

View File

@@ -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'),