()
| 526 | function computeOptimizationStats(file, |
| 527 | timeStart = -Infinity, timeEnd = Infinity) { |
| 528 | function newCollection() { |
| 529 | return { count : 0, functions : [], functionTable : [] }; |
| 530 | } |
| 531 | function addToCollection(collection, code) { |
| 532 | collection.count++; |
| 533 | let funcData = collection.functionTable[code.func]; |
no outgoing calls
no test coverage detected
searching dependent graphs…