aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/xtext/HighlightingService.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-31 15:02:16 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-31 19:26:15 +0100
commit36a2f8a6e0c19f728ddd8e88ccd45fa2a7aea283 (patch)
tree6f27bf231184646287bb502e0533f7f16e2db026 /language-web/src/main/js/xtext/HighlightingService.ts
parentfix(web): undo/redo button accessibility issue (diff)
downloadrefinery-36a2f8a6e0c19f728ddd8e88ccd45fa2a7aea283.tar.gz
refinery-36a2f8a6e0c19f728ddd8e88ccd45fa2a7aea283.tar.zst
refinery-36a2f8a6e0c19f728ddd8e88ccd45fa2a7aea283.zip
chore(web): refactor xtext client
Diffstat (limited to 'language-web/src/main/js/xtext/HighlightingService.ts')
-rw-r--r--language-web/src/main/js/xtext/HighlightingService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/language-web/src/main/js/xtext/HighlightingService.ts b/language-web/src/main/js/xtext/HighlightingService.ts
index 451a3a52..fc3e9e53 100644
--- a/language-web/src/main/js/xtext/HighlightingService.ts
+++ b/language-web/src/main/js/xtext/HighlightingService.ts
@@ -7,9 +7,9 @@ import { isHighlightingResult } from './xtextServiceResults';
7const log = getLogger('xtext.ValidationService'); 7const log = getLogger('xtext.ValidationService');
8 8
9export class HighlightingService { 9export class HighlightingService {
10 private store: EditorStore; 10 private readonly store: EditorStore;
11 11
12 private updateService: UpdateService; 12 private readonly updateService: UpdateService;
13 13
14 constructor(store: EditorStore, updateService: UpdateService) { 14 constructor(store: EditorStore, updateService: UpdateService) {
15 this.store = store; 15 this.store = store;