(handle, length, type = '')
| 328 | } |
| 329 | |
| 330 | function TransferableBlob(handle, length, type = '') { |
| 331 | ObjectSetPrototypeOf(this, Blob.prototype); |
| 332 | markTransferMode(this, true, false); |
| 333 | this[kHandle] = handle; |
| 334 | this[kType] = type; |
| 335 | this[kLength] = length; |
| 336 | } |
| 337 | |
| 338 | ObjectSetPrototypeOf(TransferableBlob.prototype, Blob.prototype); |
| 339 | ObjectSetPrototypeOf(TransferableBlob, Blob); |
nothing calls this directly
no test coverage detected
searching dependent graphs…