aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/xtext/ValidationService.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/ValidationService.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/ValidationService.ts')
-rw-r--r--language-web/src/main/js/xtext/ValidationService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/language-web/src/main/js/xtext/ValidationService.ts b/language-web/src/main/js/xtext/ValidationService.ts
index 31c8f716..8e4934ac 100644
--- a/language-web/src/main/js/xtext/ValidationService.ts
+++ b/language-web/src/main/js/xtext/ValidationService.ts
@@ -8,9 +8,9 @@ import { isValidationResult } from './xtextServiceResults';
8const log = getLogger('xtext.ValidationService'); 8const log = getLogger('xtext.ValidationService');
9 9
10export class ValidationService { 10export class ValidationService {
11 private store: EditorStore; 11 private readonly store: EditorStore;
12 12
13 private updateService: UpdateService; 13 private readonly updateService: UpdateService;
14 14
15 constructor(store: EditorStore, updateService: UpdateService) { 15 constructor(store: EditorStore, updateService: UpdateService) {
16 this.store = store; 16 this.store = store;