/** * Benchmarks for scanFile's line/column lookup — verifies that precomputing * line offsets once and binary-searching beats slicing the file from the * start for every match (which is O(matches × file size)). * * Both benchmarks accumulate their results into `sink`, which is read in * afterAll. This prevents the optimizer from eliminating the lookups as dead * code, which would otherwise make the binary-search numbers untrustworthy. * * Run with: pnpm vitest bench */ export {}; //# sourceMappingURL=scanFile.linecol.bench.d.ts.map