(code: string)
| 550 | } |
| 551 | |
| 552 | export function parseRec(code: string) { |
| 553 | return subsetSystem( |
| 554 | parse(code), |
| 555 | ["Boolean", "Number", "Func", "Rec", "TypeVar"], |
| 556 | ["true", "false", "if", "number", "add", "var", "func", "call", "seq", "const"], |
| 557 | ); |
| 558 | } |
| 559 | |
| 560 | export function parseRec2(code: string) { |
| 561 | return subsetSystem( |
nothing calls this directly
no test coverage detected