#!/usr/bin/env npx tsx /** * SMI-4293: Incremental parsing benchmark. * * Runs the Python adapter's full parse vs incremental parse over a * synthetic module of ~500 function/class/import constructs. Targets: * • Single-file re-parse < 100ms (SMI-1309 success criterion) * • Unchanged re-parse ≥ 5× faster than a cold full parse * * Usage: * npx tsx src/benchmarks/incrementalParseBenchmark.ts * # or via npm script: * npm run benchmark:incremental-parse -w @skillsmith/core * * @see docs/internal/implementation/github-wave-5c-tree-sitter-incremental.md */ export {}; //# sourceMappingURL=incrementalParseBenchmark.d.ts.map