(code: string)
| 542 | } |
| 543 | |
| 544 | export function parseSub(code: string) { |
| 545 | return subsetSystem( |
| 546 | parse(code), |
| 547 | ["Boolean", "Number", "Func", "Object"], |
| 548 | ["true", "false", "number", "add", "var", "func", "call", "seq", "const", "objectNew", "objectGet"], |
| 549 | ); |
| 550 | } |
| 551 | |
| 552 | export function parseRec(code: string) { |
| 553 | return subsetSystem( |
nothing calls this directly
no test coverage detected