()
| 435 | } |
| 436 | |
| 437 | [kTransferList]() { |
| 438 | if (!this.aborted) { |
| 439 | const { port1, port2 } = lazyMessageChannel(); |
| 440 | port1.unref(); |
| 441 | port2.unref(); |
| 442 | this[kCloneData] = { |
| 443 | port1, |
| 444 | port2, |
| 445 | }; |
| 446 | return [port2]; |
| 447 | } |
| 448 | return []; |
| 449 | } |
| 450 | |
| 451 | [kDeserialize]({ aborted, reason, port }) { |
| 452 | if (aborted) { |
nothing calls this directly
no test coverage detected