()
| 358 | } |
| 359 | |
| 360 | function countNodes() { |
| 361 | let graph = heimdallGraph.loadFromNode(heimdall.root); |
| 362 | let count = 0; |
| 363 | |
| 364 | // eslint-disable-next-line no-unused-vars |
| 365 | for (let n of graph.dfsIterator()) { |
| 366 | ++count; |
| 367 | } |
| 368 | |
| 369 | return count; |
| 370 | } |
| 371 | |
| 372 | td.replace(instrumentation, '_buildSummary'); |
| 373 | td.replace(instrumentation, '_invokeAddonHook'); |
no outgoing calls
no test coverage detected
searching dependent graphs…