parser for types + start moving all types to separate modules
This commit is contained in:
parent
8eec5b9239
commit
1d826ea8d4
11 changed files with 277 additions and 88 deletions
|
|
@ -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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue