(inp: string, macro: string, rest: string)
| 2767 | // byte-for-byte the same length and identical *except* the macro is gone — |
| 2768 | // every downstream line/column stays exact. |
| 2769 | const check = (inp: string, macro: string, rest: string) => { |
| 2770 | const out = blankCppExportMacros(inp); |
| 2771 | expect(out.length).toBe(inp.length); // every byte offset preserved |
| 2772 | expect(out).not.toContain(macro); // the macro token is blanked |
| 2773 | expect(out.replace(/ +/g, ' ')).toBe(rest); // nothing else changed |
| 2774 | }; |
| 2775 | // Generalizes across the export-macro space: UE _API, Qt/Boost _EXPORT, |
| 2776 | // LLVM _ABI, bare API. |
| 2777 | check( |
no test coverage detected