(
profile, totalTicks, nonLibTicks, filterP, callback, printAllTicks)
| 1048 | } |
| 1049 | |
| 1050 | printEntries( |
| 1051 | profile, totalTicks, nonLibTicks, filterP, callback, printAllTicks) { |
| 1052 | this.processProfile(profile, filterP, (rec) => { |
| 1053 | if (rec.selfTime == 0) return; |
| 1054 | callback(rec); |
| 1055 | const funcName = this.formatFunctionName(rec.internalFuncName); |
| 1056 | if (printAllTicks) { |
| 1057 | this.printLine(funcName, rec.selfTime, totalTicks, nonLibTicks); |
| 1058 | } |
| 1059 | }); |
| 1060 | } |
| 1061 | |
| 1062 | printHeavyProfile(profile, opt_indent) { |
| 1063 | const indent = opt_indent || 0; |
no test coverage detected