How do you “step into” with fdb.exe?

纵然是瞬间 提交于 2019-12-25 04:21:52

问题


exe now for debugging. The problem is I don't know how to do "step into" with that. There're two command for stepping, "step" and "next", but it all behaves similar to "step over" in a GUI debugger.

So is there any good way? Maybe I need to set a break point in the beginning of the function i'm going to step into, continue the execution and finally remove the break point?


回答1:


If you are on Windows (by the .exe I'm assuming so) then give FlashDevelop a whirl. It gives a GUI to FDB and has a "step into" button. The debugger's source should you some insight if the program itself isn't practical.

http://www.flashdevelop.org/




回答2:


According to documentation: http://livedocs.adobe.com/flex/3/html/help.html?content=debugging_02.html

  • step is "Step into"
  • next is "Step over"

step works for me.



来源:https://stackoverflow.com/questions/3083629/how-do-you-step-into-with-fdb-exe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!