(label: string)
| 502 | |
| 503 | const completionOrder: string[] = [] |
| 504 | const pushCompletion = (label: string) => (res: { result: unknown }) => { |
| 505 | completionOrder.push(String(res.result ?? label)) |
| 506 | return res |
| 507 | } |
| 508 | |
| 509 | const p1 = executeInIsolatedVM({ |
| 510 | code: 'return 1', |