Closed ncannasse closed 9 months ago
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 pt_x and pt_y on stack.
pt
pt_x
pt_y
static function foo(x,y) { var pt = new h2d.col.Point(x,y); return pt.length(); }
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 bypt_x
andpt_y
on stack.