Skip to content

Commit 4fe892f

Browse files
committed
fix(devx): report the program/transpile doors in the ts-parse census line
The census exit line counted every parse but not which of the three entry points each came through, which is exactly the observation needed to prove a converted call site really runs against a real tree. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DdCnBGcHeufjrq7drTD3wt
1 parent 54b90ee commit 4fe892f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/ts-parse.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,8 @@ if (process.env.OS_TOOLING_PARSE_CENSUS) {
463463
process.on('exit', () => {
464464
const c = parseCensus();
465465
process.stderr.write(
466-
`[ts-parse census] ${c.parses} parse(s) over ${c.files} distinct file name(s); ${c.refusals} refusal(s)\n`,
466+
`[ts-parse census] ${c.parses} parse(s) over ${c.files} distinct file name(s) `
467+
+ `(${c.programs} program(s), ${c.transpiles} transpile(s)); ${c.refusals} refusal(s)\n`,
467468
);
468469
});
469470
}

0 commit comments

Comments
 (0)