8

Are there any reliable debuggers for Haxe out there, in an ActionScript 3 context, and do they support breakpoints, conditional breakpoints, watches, locals and stacks?

josef.van.niekerk
  • 11,941
  • 20
  • 97
  • 157

3 Answers3

11

FlashDevelop has a pretty good debugger now and it supports haxe AS3.

For haxe it must be enabled per project - see 'Enable Debugger' in the Project's Compiler options.

Philippe
  • 2,621
  • 1
  • 19
  • 20
0

Correct me if I'm wrong but I believe you can add -D fdb to the hxml build arguments and then in FlashDevelop I think you will be able to use breakpoints and such.

Never tried it myself though as I don't run FlashDevelop on my Mac.

Robert Sköld
  • 752
  • 2
  • 9
  • 19
0

When you run with Flow you just add the --debug flag like this:

haxelib run flow run --debug 
Max von Hippel
  • 2,856
  • 3
  • 29
  • 46
Jorge Carretero
  • 361
  • 2
  • 12