(positions)
| 63 | ]; |
| 64 | |
| 65 | function testPositions(positions) { |
| 66 | contextGroup.schedulePauseOnNextStatement('', ''); |
| 67 | return Protocol.Debugger |
| 68 | .setBlackboxedRanges({scriptId: scriptId, positions: positions}) |
| 69 | .then(InspectorTest.logMessage) |
| 70 | .then( |
| 71 | () => Protocol.Runtime.evaluate( |
| 72 | {expression: 'testFunction()//# sourceURL=expr.js'})); |
| 73 | } |
| 74 | |
| 75 | function position(line, column) { |
| 76 | return {lineNumber: line, columnNumber: column}; |
no test coverage detected