#918 Is it possible to insert debugger statements in your code?

fury Sat 16 Jan 2010

In Ruby/Python you can stop the scripts at runtime, and from there you can inspect the value of variables, step through code, do whatever. Is this kind of stuff possible in Fantom? What's the preferred way of debugging?

kaushik Sat 16 Jan 2010

You can use one of the IDEs. they allow you to put break point and step through the code.

reg., Pause the execution and dynamically execute debug code at that point, I don't think that's available yet in IDEs, but that would be cool. The "display" panel is one of my favorite in eclipse

Login or Signup to reply.