()
| 602 | } |
| 603 | |
| 604 | toString() { |
| 605 | return ` - ${this.prefix}-time:`.padEnd(24) + |
| 606 | ` Σ executed=${TIME(this.executedCost)}`.padEnd(20) + |
| 607 | ` Σ non-executed=${TIME(this.nonExecutedCost)}`.padEnd(24) + |
| 608 | ` max=${TIME(this.maxDuration)}`; |
| 609 | } |
| 610 | |
| 611 | setMetrics(dict) { |
| 612 | dict.set('parseMetric', this.executionCost); |
no test coverage detected