This commit is contained in:
nora 2023-07-31 20:26:50 +02:00
parent b779a51ef5
commit f582a5b4c3
9 changed files with 248 additions and 85 deletions

View file

@ -12,6 +12,7 @@ export type DatalessToken =
| "import"
| "extern"
| "mod"
| "global"
| "("
| ")"
| "{"
@ -316,6 +317,7 @@ const KEYOWRDS: DatalessToken[] = [
"import",
"extern",
"mod",
"global",
];
const KEYWORD_SET = new Set<string>(KEYOWRDS);