(position: PointerInput)
| 149 | } |
| 150 | |
| 151 | until(position: PointerInput): void { |
| 152 | try { |
| 153 | this.runUntilPointer(toPointer(position), "until"); |
| 154 | } catch (error) { |
| 155 | log(`[until] invalid address: ${String(error)}`, "red"); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | continue(threadId?: ThreadId | null): void { |
| 160 | const session = this.getSession(threadId ?? this.currentThreadId); |
no test coverage detected