Quote:
Originally Posted by Inverness
Basically you're finding out what functions are called and the order they're called in.
|
So, you could get the same result by calling something like
PHP Code:
function storeFunction( f )
{
this.functionsCalled.add( f );
}
and then at the end you would have the same result?
EDIT: I realize this isn't what you're asking, I'm just trying to understand this.