(stackTraces: string[][], count: number)
| 164 | }; |
| 165 | |
| 166 | function captureStackTraces(stackTraces: string[][], count: number): void { |
| 167 | if (count > 0) { |
| 168 | stackTraces.push(getFrames(new LongStackTrace().error)); |
| 169 | captureStackTraces(stackTraces, count - 1); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | function computeIgnoreFrames() { |
| 174 | if (!stackTracesEnabled()) { |
no test coverage detected
searching dependent graphs…