josef.van.niekerk
josef.van.niekerk

Reputation: 12121

Debugging Haxe (ActionScript 3)

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?

Upvotes: 8

Views: 2850

Answers (3)

Jorge Carretero
Jorge Carretero

Reputation: 361

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

haxelib run flow run --debug 

Upvotes: 0

Philippe
Philippe

Reputation: 2631

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.

Upvotes: 11

Robert Sköld
Robert Sköld

Reputation: 752

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.

Upvotes: 0

Related Questions