()
| 997 | } |
| 998 | |
| 999 | printHeavyProfHeader() { |
| 1000 | print('\n [Bottom up (heavy) profile]:'); |
| 1001 | print(' Note: percentage shows a share of a particular caller in the ' + |
| 1002 | 'total\n' + |
| 1003 | ' amount of its parent calls.'); |
| 1004 | print(` Callers occupying less than ${TickProcessor.CALL_PROFILE_CUTOFF_PCT.toFixed(1)}% are not shown.\n`); |
| 1005 | print(' ticks parent name'); |
| 1006 | } |
| 1007 | |
| 1008 | processProfile(profile, filterP, func) { |
| 1009 | for (let i = 0, n = profile.length; i < n; ++i) { |
no test coverage detected