Skip to content

Commit

Permalink
Rename getStackTrace
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Aug 24, 2021
1 parent bb6159a commit 8514590
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/debugger/jupyter/kernelDebugAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class KernelDebugAdapter implements DebugAdapter, IKernelDebugAdapter, ID

// Call stackTrace to determine whether to forward the stop event to the client, and also to
// start the process of updating the variables view.
const stResponse = await this.stackTrace({ startFrame: 0, levels: 1 });
const stResponse = await this.getStackTrace({ startFrame: 0, levels: 1 });

const sf = stResponse.stackFrames[0];
const cell = this.notebookDocument.cellAt(this.configuration.__cellIndex!);
Expand Down Expand Up @@ -261,7 +261,7 @@ export class KernelDebugAdapter implements DebugAdapter, IKernelDebugAdapter, ID
});
}

private stackTrace(args?: {
private getStackTrace(args?: {
startFrame?: number;
levels?: number;
}): Promise<DebugProtocol.StackTraceResponse['body']> {
Expand Down

0 comments on commit 8514590

Please sign in to comment.