Henning Dieterichs

Results 575 comments of Henning Dieterichs

Oh, I totally forgot about that.

Just released an update. Thanks for your wokr @fehrlich!

Which nodejs version do you run jest in? `global` should be available since node v0.1.27.

Can you type "global\n" into the debug console?

This does not make sense. I will debug it tomorrow. What is the global object called then? `window`??

Try `mainJsonObject.toString()`. The value to visualize must be a (JSON) string!

Then something changed in the implementation of the Java Debug adapter :( It should be very easy to fix though. Can you look into it? The source code of this...

Which debugger do you use? Lldb or gdb? You can extend lldb with custom python scripts. [These python scripts could theoretically extract JSON from your c++ buffer](https://github.com/hediet/vscode-debug-visualizer/issues/32), please don't ask...

I think this can be solved by configuring the delve debug adapter to use the watch context. The readme describes how to do that ;)

``` "debugVisualizer.debugAdapterConfigurations": { "go": { "context": "watch" } } ```