(handle)
| 339 | ClonedHistogram.prototype[kDeserialize] = () => { }; |
| 340 | |
| 341 | function ClonedRecordableHistogram(handle) { |
| 342 | const histogram = new RecordableHistogram(kSkipThrow); |
| 343 | |
| 344 | markTransferMode(histogram, true, false); |
| 345 | histogram[kRecordable] = true; |
| 346 | histogram[kMap] = new Map(); |
| 347 | histogram[kHandle] = handle; |
| 348 | histogram.constructor = RecordableHistogram; |
| 349 | |
| 350 | return histogram; |
| 351 | } |
| 352 | |
| 353 | ClonedRecordableHistogram.prototype[kDeserialize] = () => { }; |
| 354 |
nothing calls this directly
no test coverage detected
searching dependent graphs…