aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/xtext
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/src/main/js/xtext')
-rw-r--r--language-web/src/main/js/xtext/ContentAssistService.ts2
-rw-r--r--language-web/src/main/js/xtext/UpdateService.ts2
-rw-r--r--language-web/src/main/js/xtext/ValidationService.ts2
-rw-r--r--language-web/src/main/js/xtext/XtextClient.ts2
-rw-r--r--language-web/src/main/js/xtext/XtextWebSocketClient.ts4
5 files changed, 6 insertions, 6 deletions
diff --git a/language-web/src/main/js/xtext/ContentAssistService.ts b/language-web/src/main/js/xtext/ContentAssistService.ts
index e9fdd12e..9cbb385f 100644
--- a/language-web/src/main/js/xtext/ContentAssistService.ts
+++ b/language-web/src/main/js/xtext/ContentAssistService.ts
@@ -6,8 +6,8 @@ import type {
6import type { ChangeSet, Transaction } from '@codemirror/state'; 6import type { ChangeSet, Transaction } from '@codemirror/state';
7import escapeStringRegexp from 'escape-string-regexp'; 7import escapeStringRegexp from 'escape-string-regexp';
8 8
9import { getLogger } from '../logging';
10import type { UpdateService } from './UpdateService'; 9import type { UpdateService } from './UpdateService';
10import { getLogger } from '../utils/logger';
11import type { IContentAssistEntry } from './xtextServiceResults'; 11import type { IContentAssistEntry } from './xtextServiceResults';
12 12
13const PROPOSALS_LIMIT = 1000; 13const PROPOSALS_LIMIT = 1000;
diff --git a/language-web/src/main/js/xtext/UpdateService.ts b/language-web/src/main/js/xtext/UpdateService.ts
index bbe7bb62..3ab1daf9 100644
--- a/language-web/src/main/js/xtext/UpdateService.ts
+++ b/language-web/src/main/js/xtext/UpdateService.ts
@@ -6,8 +6,8 @@ import {
6import { nanoid } from 'nanoid'; 6import { nanoid } from 'nanoid';
7 7
8import type { EditorStore } from '../editor/EditorStore'; 8import type { EditorStore } from '../editor/EditorStore';
9import { getLogger } from '../logging';
10import type { XtextWebSocketClient } from './XtextWebSocketClient'; 9import type { XtextWebSocketClient } from './XtextWebSocketClient';
10import { getLogger } from '../utils/logger';
11import { PendingTask } from '../utils/PendingTask'; 11import { PendingTask } from '../utils/PendingTask';
12import { Timer } from '../utils/Timer'; 12import { Timer } from '../utils/Timer';
13import { 13import {
diff --git a/language-web/src/main/js/xtext/ValidationService.ts b/language-web/src/main/js/xtext/ValidationService.ts
index 838aa31e..163b5535 100644
--- a/language-web/src/main/js/xtext/ValidationService.ts
+++ b/language-web/src/main/js/xtext/ValidationService.ts
@@ -1,8 +1,8 @@
1import type { Diagnostic } from '@codemirror/lint'; 1import type { Diagnostic } from '@codemirror/lint';
2 2
3import type { EditorStore } from '../editor/EditorStore'; 3import type { EditorStore } from '../editor/EditorStore';
4import { getLogger } from '../logging';
5import type { UpdateService } from './UpdateService'; 4import type { UpdateService } from './UpdateService';
5import { getLogger } from '../utils/logger';
6import { isValidationResult } from './xtextServiceResults'; 6import { isValidationResult } from './xtextServiceResults';
7 7
8const log = getLogger('xtext.ValidationService'); 8const log = getLogger('xtext.ValidationService');
diff --git a/language-web/src/main/js/xtext/XtextClient.ts b/language-web/src/main/js/xtext/XtextClient.ts
index 92bad0d3..7683a8ef 100644
--- a/language-web/src/main/js/xtext/XtextClient.ts
+++ b/language-web/src/main/js/xtext/XtextClient.ts
@@ -6,8 +6,8 @@ import type { Transaction } from '@codemirror/state';
6 6
7import type { EditorStore } from '../editor/EditorStore'; 7import type { EditorStore } from '../editor/EditorStore';
8import { ContentAssistService } from './ContentAssistService'; 8import { ContentAssistService } from './ContentAssistService';
9import { getLogger } from '../logging';
10import { UpdateService } from './UpdateService'; 9import { UpdateService } from './UpdateService';
10import { getLogger } from '../utils/logger';
11import { ValidationService } from './ValidationService'; 11import { ValidationService } from './ValidationService';
12import { XtextWebSocketClient } from './XtextWebSocketClient'; 12import { XtextWebSocketClient } from './XtextWebSocketClient';
13 13
diff --git a/language-web/src/main/js/xtext/XtextWebSocketClient.ts b/language-web/src/main/js/xtext/XtextWebSocketClient.ts
index 5b775500..839d6518 100644
--- a/language-web/src/main/js/xtext/XtextWebSocketClient.ts
+++ b/language-web/src/main/js/xtext/XtextWebSocketClient.ts
@@ -1,6 +1,6 @@
1import { nanoid } from 'nanoid'; 1import { nanoid } from 'nanoid';
2 2
3import { getLogger } from '../logging'; 3import { getLogger } from '../utils/logger';
4import { PendingTask } from '../utils/PendingTask'; 4import { PendingTask } from '../utils/PendingTask';
5import { Timer } from '../utils/Timer'; 5import { Timer } from '../utils/Timer';
6import { 6import {
@@ -25,7 +25,7 @@ const PING_TIMEOUT_MS = 10 * 1000;
25 25
26const REQUEST_TIMEOUT_MS = 1000; 26const REQUEST_TIMEOUT_MS = 1000;
27 27
28const log = getLogger('XtextWebSocketClient'); 28const log = getLogger('xtext.XtextWebSocketClient');
29 29
30type ReconnectHandler = () => Promise<void>; 30type ReconnectHandler = () => Promise<void>;
31 31