(delta = 2)
| 695 | } |
| 696 | |
| 697 | function setContextLineNumber(delta = 2) { |
| 698 | if (!selectedFrame) { |
| 699 | throw new ERR_DEBUGGER_ERROR('Requires execution to be paused'); |
| 700 | } |
| 701 | validateNumber(delta, 'delta', 1); |
| 702 | contextLineNumber = delta; |
| 703 | print(`The contextLine has been changed to ${delta}.`); |
| 704 | } |
| 705 | |
| 706 | function handleBreakpointResolved({ breakpointId, location }) { |
| 707 | const script = knownScripts[location.scriptId]; |