(handle)
| 328 | } |
| 329 | |
| 330 | function ClonedHistogram(handle) { |
| 331 | return ReflectConstruct( |
| 332 | function() { |
| 333 | markTransferMode(this, true, false); |
| 334 | this[kHandle] = handle; |
| 335 | this[kMap] = new Map(); |
| 336 | }, [], Histogram); |
| 337 | } |
| 338 | |
| 339 | ClonedHistogram.prototype[kDeserialize] = () => { }; |
| 340 |
nothing calls this directly
no test coverage detected
searching dependent graphs…