| 14 | } |
| 15 | |
| 16 | export interface BenchmarkResult { |
| 17 | benchName: string; |
| 18 | tasks: TaskData[]; |
| 19 | } |
| 20 | |
| 21 | export function extractResults(bench: Bench): BenchmarkResult { |
| 22 | const tasks: TaskData[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…