aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/xtext/ContentAssistService.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-11-19 21:39:00 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-11-22 16:40:03 +0100
commit3aa4a2b58221a3e83b17d0c04c9a6e9c41e5500c (patch)
tree1e25f513e3b34b2ea29dbcc6cc3795e5927a1362 /subprojects/frontend/src/xtext/ContentAssistService.ts
parentfeat(language): numeric expressions (diff)
downloadrefinery-3aa4a2b58221a3e83b17d0c04c9a6e9c41e5500c.tar.gz
refinery-3aa4a2b58221a3e83b17d0c04c9a6e9c41e5500c.tar.zst
refinery-3aa4a2b58221a3e83b17d0c04c9a6e9c41e5500c.zip
refactor: separate primitive types from nodes
Diffstat (limited to 'subprojects/frontend/src/xtext/ContentAssistService.ts')
-rw-r--r--subprojects/frontend/src/xtext/ContentAssistService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/frontend/src/xtext/ContentAssistService.ts b/subprojects/frontend/src/xtext/ContentAssistService.ts
index 101990af..fa894e4d 100644
--- a/subprojects/frontend/src/xtext/ContentAssistService.ts
+++ b/subprojects/frontend/src/xtext/ContentAssistService.ts
@@ -17,7 +17,7 @@ const PROPOSALS_LIMIT = 1000;
17 17
18const IDENTIFIER_REGEXP_STR = '[a-zA-Z0-9_]*'; 18const IDENTIFIER_REGEXP_STR = '[a-zA-Z0-9_]*';
19 19
20const HIGH_PRIORITY_KEYWORDS = ['<->', '==>']; 20const HIGH_PRIORITY_KEYWORDS = ['<->', '->', '==>'];
21 21
22const log = getLogger('xtext.ContentAssistService'); 22const log = getLogger('xtext.ContentAssistService');
23 23