aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/inlay_hints.ts
diff options
context:
space:
mode:
authorEmil Lauridsen <[email protected]>2020-01-15 10:47:56 +0000
committerEmil Lauridsen <[email protected]>2020-01-15 11:04:35 +0000
commit70cba0fe0fe3583deb19709a61768695b83d3ea9 (patch)
tree7ba01677ada676242f74151f716a2e0bcc47e1a2 /editors/code/src/inlay_hints.ts
parent876f92d547af5f39170350f3995647ec934f590b (diff)
Use types from vscode-langaugeclient
Diffstat (limited to 'editors/code/src/inlay_hints.ts')
-rw-r--r--editors/code/src/inlay_hints.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts
index c4206cf5b..6357e44f1 100644
--- a/editors/code/src/inlay_hints.ts
+++ b/editors/code/src/inlay_hints.ts
@@ -42,7 +42,7 @@ const parameterHintDecorationType = vscode.window.createTextEditorDecorationType
42 before: { 42 before: {
43 color: new vscode.ThemeColor('rust_analyzer.inlayHint'), 43 color: new vscode.ThemeColor('rust_analyzer.inlayHint'),
44 } 44 }
45}) 45});
46 46
47class HintsUpdater { 47class HintsUpdater {
48 private pending: Map<string, vscode.CancellationTokenSource> = new Map(); 48 private pending: Map<string, vscode.CancellationTokenSource> = new Map();