(rec)
| 122 | } |
| 123 | |
| 124 | function seqKey(rec) { |
| 125 | if (!Number.isInteger(rec.frameSeq)) return null; |
| 126 | const pid = Number.isInteger(rec.pid) ? rec.pid : "nopid"; |
| 127 | return `${pid}:${rec.frameSeq}`; |
| 128 | } |
| 129 | |
| 130 | function addOpcodeHistogram(dst, hist) { |
| 131 | if (typeof hist !== "object" || hist === null) return; |
no outgoing calls
no test coverage detected