* The request starts the debuggee to step into a function/method if possible. * If it cannot step into a target, 'stepIn' behaves like 'next'. * The debug adapter first sends the response and then a 'stopped' event (with reason 'step') after the step has completed. * If there are mult
(params: StepInParams)
| 1290 | * The list of possible targets for a given source line can be retrieved via the 'stepInTargets' request. |
| 1291 | */ |
| 1292 | stepIn(params: StepInParams): Promise<StepInResult>; |
| 1293 | |
| 1294 | /** |
| 1295 | * The request starts the debuggee to run again for one step. |
no outgoing calls
no test coverage detected