I would actually like for the app to display so that
it's easier to see what got called by what and where is
stopped etc:
this code:
method1 ()
if date.isgreaterthan("jan/01/2005") then
method2()
method5()
method6()
end method1
method2 ()
method3()
method4()
end method2
method5 ()
method2()
end method5()
would correspond to this printout:
method1
method2
method3
method4
method5
method2
method3
method4
method6
-
or something like that.
Really what I'm looking for is a way to see what the
flow of execution was while my app was running. It's
hard sometimes when you're working on a GUI app that
throws events all over the place and spawns new threads
and all of that.
I want a chronological (as in, in the order things
happened, including an option to include threads
chronologically or not) report of the execution flow of
my app.
I think this would look really good in a treeview, so
that when you expanded the nodes it would tell you
information about the frame when it started and when it
ended and stuff like that. (how long it took to run
that frame start to finish would be good too!)
I'd be willing to help with this but I'd need a
walkthrough of the app to get started. I don't really
see how everything fits together.
Logged In: NO
Actually it should probably look like this :
method1
method2
method3
method4
method5
method2
method3
method4
method6