(measurements)
| 9724 | } |
| 9725 | |
| 9726 | function getDOMSummary(measurements) { |
| 9727 | var items = []; |
| 9728 | measurements.forEach(function (measurement) { |
| 9729 | Object.keys(measurement.writes).forEach(function (id) { |
| 9730 | measurement.writes[id].forEach(function (write) { |
| 9731 | items.push({ |
| 9732 | id: id, |
| 9733 | type: DOM_OPERATION_TYPES[write.type] || write.type, |
| 9734 | args: write.args |
| 9735 | }); |
| 9736 | }); |
| 9737 | }); |
| 9738 | }); |
| 9739 | return items; |
| 9740 | } |
| 9741 | |
| 9742 | function getExclusiveSummary(measurements) { |
| 9743 | var candidates = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…