(progress: Progress)
| 16 | } |
| 17 | |
| 18 | function report(progress: Progress) { |
| 19 | try { |
| 20 | _reporters.forEach((item) => item.report(progress)); |
| 21 | } catch (ex) { |
| 22 | logger.error('Failed to report progress', ex); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Reports a user reportable action. |
no test coverage detected