Klaus Hummel

Results 17 comments of Klaus Hummel

My background is in automation with microcontrollers. Mostly, performance is important, of course. Now I am building a project where performance is less important, but fixed point arithmetic must be...

>Another option is to use assert, but then this is only checked in debug builds. Backward compatibility wouldn't be a concern, since overflow is UB anyway. Would this work for...

A Data Extractor is not set / available. It is Java code. I thought until now that if no Data Extractor is used, then the expression is interpreted directly as...

Output of debug console: ``` y "{"kind":{"graph":true},"nodes":[{"id":"1"},{"id":"2"},{"id":"3"}],"edges":[{"from":"1","to":"2"},{"from":"2","to":"3"}]}" coder: 0 hash: 0 value: byte[120]@23 y.toString() "{"kind":{"graph":true},"nodes":[{"id":"1"},{"id":"2"},{"id":"3"}],"edges":[{"from":"1","to":"2"},{"from":"2","to":"3"}]}" coder: 0 hash: 0 value: byte[120]@23 ``` ![TestJson2](https://user-images.githubusercontent.com/86959492/157692206-803ab30f-d947-4cab-af52-95523260952a.png) The example app does not seem to...

Quick update, the same game in C++ works like a charm. ![viz1](https://user-images.githubusercontent.com/86959492/157710350-e77e9e74-745a-426f-8134-650cf717df5b.png)

Could the problem be the outer quotation marks before the parenthesis? In the JSON source a quotation mark is displayed. Maybe the visualizer can't handle the fact that the Java...

OK, I will try it over the weekend. I have never debugged an extension within a debugging.

In the meantime I have been working on debugging extensions. (First of all: I actually come from the embedded corner with C/C++. I only use Javascript for a bit of...

It is probably because the option “-enable-pretty-printing” is not set in gdb. Has the option been changed in the launch.json file? See example https://github.com/hediet/vscode-debug-visualizer/blob/master/demos/cpp/.vscode/launch.json ![Image](https://github.com/user-attachments/assets/68a07a37-b10a-411e-b61f-d9eaba36674f) See also C/C++ visualization #119...

Note: the data must be transferred to the Visualizer as a json string for languages that only support **BasicSupport**. For the structure of json strings, see [Visualization Playground](https://hediet.github.io/visualization/?darkTheme=1) Otherwise the...