gcode-mirror / xdebugtoolkit

Automatically exported from code.google.com/p/xdebugtoolkit
0 stars 0 forks source link

Configurable aggregation: by function only, by function+file, etc #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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