JStack
JStack copied to clipboard
Friendly stack traces for Haxe/JS and Haxe/PHP. Makes haxe.CallStack point to haxe sources.
This is probably related to HaxeFoundation/haxe#9124. ```haxe class Test { static function main() { throw 'Hi there'; } } ``` ``` $ haxe -main Test -php test -lib jstack -D...
JStack combos really well with VSCode's output panel, because it detects file paths and makes them clickable:  However, as you can see, it only takes me to the file...
JStack doesn't seem usable with OpenFL projects atm, because it doesn't support constructors / `new()` as entry points. ``` > openfl create project JStackTest > cd JstackTest ``` Add this...