(threadId: number, frameId: number)
| 973 | } |
| 974 | |
| 975 | public static getThreadFrameStr(threadId: number, frameId: number): string { |
| 976 | const th = threadId > 0 ? `--thread ${threadId} ` : ''; |
| 977 | const fr = frameId >= 0 ? `--frame ${frameId}` : ''; |
| 978 | return th + fr; |
| 979 | } |
| 980 | |
| 981 | // Pass negative threadId/frameId to specify no context or current context |
| 982 | public async varUpdate(name: string = '*', threadId: number, frameId: number): Promise<MINode> { |
no outgoing calls
no test coverage detected