Simple compound function calls like:
doEcho(strToTime("now"));
improperly shows strToTime as being called twice, and doEcho as never called.
Logged In: YES user_id=16992
More precisely, any "compound" function call seems to only report the innermost function call. So, something like:
doNothing(doNothing(doSomething()));
reports doSomething() called three times!!
Log in to post a comment.
Logged In: YES
user_id=16992
More precisely, any "compound" function call seems to only
report the innermost function call. So, something like:
doNothing(doNothing(doSomething()));
reports doSomething() called three times!!