(handle)
| 285 | |
| 286 | class InternalBlockList { |
| 287 | constructor(handle) { |
| 288 | markTransferMode(this, true, false); |
| 289 | this[kHandle] = handle; |
| 290 | if (handle !== undefined) |
| 291 | handle[owner_symbol] = this; |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | InternalBlockList.prototype.constructor = BlockList.prototype.constructor; |
nothing calls this directly
no test coverage detected