(locations)
| 335 | } |
| 336 | |
| 337 | logSourceLocations(locations) { |
| 338 | if (locations.length == 0) return Promise.resolve(); |
| 339 | return this.logSourceLocation(locations[0]).then(() => this.logSourceLocations(locations.splice(1))); |
| 340 | } |
| 341 | |
| 342 | async logBreakLocations(inputLocations) { |
| 343 | let locations = inputLocations.slice(); |
no test coverage detected