* Main execution function
()
| 241 | * Main execution function |
| 242 | */ |
| 243 | async function main () { |
| 244 | console.log("🔥 Parser Performance Benchmarks"); |
| 245 | |
| 246 | try { |
| 247 | benchmarkJsonParser(); |
| 248 | benchmarkJsonlParser(); |
| 249 | benchmarkFormParser(); |
| 250 | benchmarkParserComparison(); |
| 251 | testParserMemoryUsage(); |
| 252 | |
| 253 | console.log("\n✅ Parser benchmarks completed\n"); |
| 254 | } catch (error) { |
| 255 | console.error("❌ Benchmark failed:", error); |
| 256 | process.exit(1); |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | main(); |
no test coverage detected