diff options
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/inlay_hints.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index d7fabe795..fd7c49c89 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -67,7 +67,7 @@ class HintsUpdater implements Disposable { | |||
67 | private sourceFiles = new Map<string, RustSourceFile>(); // map Uri -> RustSourceFile | 67 | private sourceFiles = new Map<string, RustSourceFile>(); // map Uri -> RustSourceFile |
68 | private readonly disposables: Disposable[] = []; | 68 | private readonly disposables: Disposable[] = []; |
69 | 69 | ||
70 | private constructor(readonly ctx: Ctx) { } | 70 | private constructor(private readonly ctx: Ctx) { } |
71 | 71 | ||
72 | static create(ctx: Ctx) { | 72 | static create(ctx: Ctx) { |
73 | const self = new HintsUpdater(ctx); | 73 | const self = new HintsUpdater(ctx); |