addInto method
Sums this snapshot into accumulator (corpus-sweep aggregation).
Implementation
void addInto(PdfPerfStats accumulator) {
for (var i = 0; i < phaseUs.length; i++) {
accumulator.phaseUs[i] += phaseUs[i];
accumulator.phaseCalls[i] += phaseCalls[i];
}
for (var i = 0; i < counts.length; i++) {
accumulator.counts[i] += counts[i];
}
for (var i = 0; i < events.length; i++) {
accumulator.events[i] += events[i];
}
}