You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really like the profiler, but it seems to have trouble with codebases that have a lot of recursion (like Flixel-UI's _loadThing() function).
For instance:
function foo(iteration:Int = 0):Void
{
DC.beginProfile("foo");
if (iteration < 10)
{
foo(iteration++);
}
DC.endProfile("foo");
}
Call foo() from your code, and you will receive the error "foo already started." The problem is sometimes I want to be able to profile a recursive function but there's no easy way to do that if the profiler will throw an error if I begin another foo profile before I finish the last one.
If I do something like this:
private function foo(iteration:Int = 0):Void
{
DC.beginProfile("foo:"+iteration);
if (iteration < 10)
{
foo(iteration+1);
}
DC.endProfile("foo:"+iteration);
}
I can get around it, but it would be handy if the profiler would handle this case internally; it's a pretty common use-case.
The text was updated successfully, but these errors were encountered:
I really like the profiler, but it seems to have trouble with codebases that have a lot of recursion (like Flixel-UI's _loadThing() function).
For instance:
Call foo() from your code, and you will receive the error "foo already started." The problem is sometimes I want to be able to profile a recursive function but there's no easy way to do that if the profiler will throw an error if I begin another foo profile before I finish the last one.
If I do something like this:
I can get around it, but it would be handy if the profiler would handle this case internally; it's a pretty common use-case.
The text was updated successfully, but these errors were encountered: