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
Currently xdebug aggregator can only aggregate by FileName and FunctionName
at the same time.
It should be configurable instead because if we have a few instances of
similar code executed in different code bases, we may still want merge same
functions disregarding they are in different files.
Original issue reported on code.google.com by Alexey.K...@gmail.com on 12 May 2009 at 6:57
The text was updated successfully, but these errors were encountered:
Also should consider taking position into account. It can be useful as a more
verbose
mode for functions like:
{{{
function a() {
b('a');
for ($i = 0; $i <= 1000; $i++) {
b('b');
}
b('c');
}
Original comment by Alexey.K...@gmail.com on 23 May 2009 at 3:07
Original issue reported on code.google.com by
Alexey.K...@gmail.com
on 12 May 2009 at 6:57The text was updated successfully, but these errors were encountered: