(
id: string | undefined,
opts?: { threadIndex?: number; maxFrames?: number },
)
| 173 | } |
| 174 | |
| 175 | async getStack( |
| 176 | id: string | undefined, |
| 177 | opts?: { threadIndex?: number; maxFrames?: number }, |
| 178 | ): Promise<string> { |
| 179 | const session = this.requireSession(id); |
| 180 | const result = await session.backend.getStack(opts); |
| 181 | this.touch(session.info.id); |
| 182 | return result; |
| 183 | } |
| 184 | |
| 185 | async getVariables(id: string | undefined, opts?: { frameIndex?: number }): Promise<string> { |
| 186 | const session = this.requireSession(id); |
nothing calls this directly
no test coverage detected