MCPcopy Create free account
hub / github.com/LambdaNote/support-ts-tapl / parseSub

Function parseSub

article/utils.ts:544–550  ·  view source on GitHub ↗
(code: string)

Source from the content-addressed store, hash-verified

542}
543
544export 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
552export function parseRec(code: string) {
553 return subsetSystem(

Callers

nothing calls this directly

Calls 2

subsetSystemFunction · 0.70
parseFunction · 0.70

Tested by

no test coverage detected