JeremyYao commented on issue #1089:
URL:
https://github.com/apache/daffodil-vscode/issues/1089#issuecomment-2848292969
I'm doing some digging on this and for some reason when you set breakpoints
inside of these two functions
```Typescript
protected stepInRequest(
response: DebugProtocol.StepInResponse,
args: DebugProtocol.StepInArguments
): void {
this._runtime.stepIn(args.targetId)
this.sendResponse(response)
}
protected stepOutRequest(
response: DebugProtocol.StepOutResponse,
args: DebugProtocol.StepOutArguments
): void {
this._runtime.stepOut()
this.sendResponse(response)
}
```
in daffodilDebug.ts, they aren't being hit. I'm assuming that's where the
functionality of step in and step out are implemented
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]