Written by

Question David Cui · Jun 4, 2024

Old mumps code debugging with vscode

Hi in mumps, we have B "S".  This way one can step command by command.  How can we do this with vscode?  F10 only step to the next line.

Say, if I have a line like

S A=1 S B=2 S C=A+B

I cannot step within the line.  But with "S", one can.

Do you have any idea?

Thanks,

David

Product version: IRIS 2020.1

Comments

Matthias Thon · Jun 12, 2024

For test purposes you can split the line to 3 lines.

S A=1
S B=2
S C=A+B

regards Matthias

0
David Cui  Jun 15, 2024 to Matthias Thon

Thank you Matthias.

When one faces thousands lines of old codes, it is not possible.

0
David Cui  Jun 23, 2024 to Oliver Thompson

Hi Oliver,

Thank you so much.  F11 won't work since it will get one into another function.

From I get in the 2024 summit, Maybe Iris 2024.2, 2024.3 for sure will support the feather I am looking for.

Thanks,

David

0
Brett Saviano  Jun 24, 2024 to David Cui

@David Cui 
I can confirm that IRIS versions 2023.1.5, 2024.1.1 and 2024.2 will support this feature. It has not been released in the 2024.2 preview stream yet though, which is why the GitHub Pull Request that implements the VS Code-side work hasn't been merged.

0
David Cui  Jun 28, 2024 to Brett Saviano

Thank you Brett.

0
David Cui  Jun 28, 2024 to John Murray

Thank you John.

0