syntax error in VSCode debug console #895
-
OS: macOS Ventura Maybe someone already asked/solved this issue. I'm not even sure it is issue. However, I tried really hard to figure out what's wrong with my debugger console. Here are my VSCode settings.json, launch.json, and task.json setting.json
tasks.json
launch.json
My issue: When I start debugging, everything works just fine until I open debug console and will try to run some code. Here is an example So, what's wrong with this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The simple expressions evaluator does not support function calls. In general, you should not expect great REPL capabilities when debugging programs written in a compiled language. |
Beta Was this translation helpful? Give feedback.
-
Thank @vadimcn a lot. Was not aware of that |
Beta Was this translation helpful? Give feedback.
The simple expressions evaluator does not support function calls. In general, you should not expect great REPL capabilities when debugging programs written in a compiled language.