(startFrame?: number, levels?: number)
| 257 | } |
| 258 | |
| 259 | public async getStack(startFrame?: number, levels?: number): Promise<DebugProtocol.StackTraceResponse> { |
| 260 | const thread = await this.getMainThread(); |
| 261 | return this.stackTraceRequest({ threadId: thread.id, startFrame, levels }); |
| 262 | } |
| 263 | |
| 264 | public async getTopFrameVariables(scope: "Exceptions" | "Locals"): Promise<DebugProtocol.Variable[]> { |
| 265 | const stack = await this.getStack(); |
no test coverage detected