hashlink-debugger icon indicating copy to clipboard operation
hashlink-debugger copied to clipboard

Visual Studio Code Debugger for Haxe/HashLink applications

Results 25 hashlink-debugger issues
Sort by recently updated
recently updated
newest added

**TLDR;** Stepping through code and editing breakpoints is potentially broken on Linux (must be verified) There are a two potential issues with the single-step mechanism on Linux: 1) When a...

```haxe class Main { static function main() { var a:Float = 9999.0; var b:Float = 1.0; var c:Float = 0.0; c = c / b; var d = 5 -...

When we are hovering the variables, the tooltip shows "Unknown variable" instead of the value of this variable.

Hi @Gama11 , the CI is failing with some errors unrelated to the code. Seems like the scripts needs to be updated.

I'm trying out the debugger after a short break from using Haxe/Hashlink and it seems to not work anymore. When I try to debug, it builds using the `build.hxml` file...

- [x] set variable - [x] attach to process - [x] choose all exceptions/caught exceptions in breakpoints (see NWJS debugger which allows it)

enhancement

OS: Fedora 33 Hi there! :wave: I'm trying to launch Hashlink via vscode `launch.json` to easily utilize the debugger, but for whatever reason it doesn't seem to be able to...

Please submit the extension to the [Open VSX](https://open-vsx.org/) registry/marketplace. This way it can be legally downloaded/installed in opensource builds/forks of VSCode, e.g. VSCodium and Eclipse [Theia](https://theia-ide.org/). FAQs: https://www.eclipse.org/legal/open-vsx-registry-faq/ Thanks!

When doing F10 in try/catch and an exception is raised, debugger jumps after catch instead of into it

Because of compiler optimisation, some variables are not visible from within the debugger. This could be fixed by adding proper support for these. Inline constructors : `pt` is replaced by...