(cont: core.Continuation)
| 1071 | } |
| 1072 | |
| 1073 | pushStack(cont: core.Continuation) { |
| 1074 | this._stack.push(cont) |
| 1075 | if (cont._op === "OnStep") { |
| 1076 | this._steps.push({ refs: this.getFiberRefs(), flags: this.currentRuntimeFlags }) |
| 1077 | } |
| 1078 | } |
| 1079 | |
| 1080 | popStack() { |
| 1081 | const item = this._stack.pop() |
no test coverage detected