parser for types + start moving all types to separate modules

This commit is contained in:
Joeri Exelmans 2025-05-06 23:41:12 +02:00
parent 8eec5b9239
commit 1d826ea8d4
11 changed files with 277 additions and 88 deletions

View file

@ -52,3 +52,8 @@ export const lsType = makeTypeConstructor(symbolList)(1);
export const symbolSet = Symbol('Set');
export const setType = makeTypeConstructor(symbolSet)(1);
// Dict type
export const symbolDict = Symbol('Dict');
export const dictType = makeTypeConstructor(symbolDict)(2);