| 29 | /* ── Helpers ───────────────────────────────────────────────────────────────── */ |
| 30 | |
| 31 | static CBMFileResult *extract_with(const char *source, CBMLanguage lang, const char *fname) { |
| 32 | return cbm_extract_file(source, (int)strlen(source), lang, "test", fname, 0, NULL, NULL); |
| 33 | } |
| 34 | |
| 35 | static CBMFileResult *extract_ts(const char *source) { |
| 36 | return extract_with(source, CBM_LANG_TYPESCRIPT, "main.ts"); |
no test coverage detected