aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/xtext/ContentAssistService.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-30 14:36:39 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-31 19:26:14 +0100
commitdef79f104999710953124c77241c95a7726791f0 (patch)
treef1096b07aa6c67d9c986df025400d8e555ca8a95 /language-web/src/main/js/xtext/ContentAssistService.ts
parentfeat(web): server-side content assist filtering (diff)
downloadrefinery-def79f104999710953124c77241c95a7726791f0.tar.gz
refinery-def79f104999710953124c77241c95a7726791f0.tar.zst
refinery-def79f104999710953124c77241c95a7726791f0.zip
chore(web): move logger to utils/
Diffstat (limited to 'language-web/src/main/js/xtext/ContentAssistService.ts')
-rw-r--r--language-web/src/main/js/xtext/ContentAssistService.ts2
1 files changed, 1 insertions, 1 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;