()
| 200 | } |
| 201 | |
| 202 | private stopRewind() : void { |
| 203 | if (this.exports.asyncify_stop_rewind === undefined) { |
| 204 | throw Error("Asynctify is not enabled, please compile with -s ASYNCIFY=1 in emcc"); |
| 205 | } |
| 206 | this.exports.asyncify_stop_rewind(); |
| 207 | this.state = AsyncifyStateKind.None; |
| 208 | } |
| 209 | |
| 210 | private startUnwind() : void { |
| 211 | if (this.exports.asyncify_start_unwind === undefined) { |