MCPcopy Create free account
hub / github.com/Snapchat/Valdi / stepInto

Method stepInto

valdi/vscode_debugger/src/adapter/threads.ts:218–223  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

216 }
217
218 async stepInto(): Promise<Dap.StepInResult | Dap.Error> {
219 if (await this._cdp.Debugger.stepInto({ breakOnAsyncCall: true }))
220 this._expectedPauseReason = { reason: 'step' };
221 else return errors.createSilentError(localize('error.stepInDidFail', 'Unable to step in'));
222 return {};
223 }
224
225 async stepOut(): Promise<Dap.StepOutResult | Dap.Error> {
226 if (!(await this._cdp.Debugger.stepOut({})))

Callers 1

_onPausedMethod · 0.95

Calls 1

stepIntoMethod · 0.65

Tested by

no test coverage detected