aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/xtext/ContentAssistService.ts
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/src/main/js/xtext/ContentAssistService.ts')
-rw-r--r--language-web/src/main/js/xtext/ContentAssistService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/language-web/src/main/js/xtext/ContentAssistService.ts b/language-web/src/main/js/xtext/ContentAssistService.ts
index 8461ec7f..f085c5b1 100644
--- a/language-web/src/main/js/xtext/ContentAssistService.ts
+++ b/language-web/src/main/js/xtext/ContentAssistService.ts
@@ -61,9 +61,9 @@ function computeSpan(prefix: string, entryCount: number) {
61} 61}
62 62
63export class ContentAssistService { 63export class ContentAssistService {
64 updateService: UpdateService; 64 private readonly updateService: UpdateService;
65 65
66 lastCompletion: CompletionResult | null = null; 66 private lastCompletion: CompletionResult | null = null;
67 67
68 constructor(updateService: UpdateService) { 68 constructor(updateService: UpdateService) {
69 this.updateService = updateService; 69 this.updateService = updateService;