I've noticed a while ago already that setting a breakpoint with a simple hello world program such as this doesn't seem to work with hxcpp-debugger:
class Main {
static function main() {
trace("Test"); // breakpoint
}
}
Instead you need at least two lines, but in that case, the second breakpoint still doesn't trigger. "Step over" also doesn't work to stop on that line.
class Main {
static function main() {
trace("Test"); // breakpoint
trace("Test");
}
}
@nulld Can you reproduce that / any idea why this happens? I'm assuming it's likely hxcpp's fault, not ours?
I've noticed a while ago already that setting a breakpoint with a simple hello world program such as this doesn't seem to work with hxcpp-debugger:
Instead you need at least two lines, but in that case, the second breakpoint still doesn't trigger. "Step over" also doesn't work to stop on that line.
@nulld Can you reproduce that / any idea why this happens? I'm assuming it's likely hxcpp's fault, not ours?