(locA: IPartialLocation, locB: IPartialLocation)
| 418 | } |
| 419 | |
| 420 | private assertPartialLocationsEqual(locA: IPartialLocation, locB: IPartialLocation): void { |
| 421 | if (locA.path) { |
| 422 | this.assertPath(locA.path, locB.path!, 'breakpoint verification mismatch: path'); |
| 423 | } |
| 424 | if (typeof locA.line === 'number') { |
| 425 | assert.equal(locA.line, locB.line, 'breakpoint verification mismatch: line'); |
| 426 | } |
| 427 | if (typeof locB.column === 'number' && typeof locA.column === 'number') { |
| 428 | assert.equal(locA.column, locB.column, 'breakpoint verification mismatch: column'); |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | /* |
| 433 | * Returns a promise that will resolve if enough output events with the given category have been received |
no test coverage detected