(collection)
| 617 | } |
| 618 | |
| 619 | function sortCollection(collection) { |
| 620 | collection.functions.sort( |
| 621 | (a, b) => a.instances.length - b.instances.length); |
| 622 | } |
| 623 | |
| 624 | sortCollection(eagerDeoptimizations); |
| 625 | sortCollection(lazyDeoptimizations); |
no test coverage detected
searching dependent graphs…