| 188 | } |
| 189 | |
| 190 | export class Chain850 extends Chain850Base { |
| 191 | constructor() { |
| 192 | super(); |
| 193 | const [rdx, rdx_bak] = mem.gc_alloc(0x58); |
| 194 | rdx.write64(off.js_cell, this._empty_cell); |
| 195 | rdx.write64(0x50, this.stack_addr); |
| 196 | this._rsp = mem.fakeobj(rdx); |
| 197 | } |
| 198 | |
| 199 | run() { |
| 200 | this.check_allow_run(); |
| 201 | this._rop.launch = this._rsp; |
| 202 | this.dirty(); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | export const Chain = Chain850; |
| 207 |
nothing calls this directly
no outgoing calls
no test coverage detected