()
| 602 | const index = +frame.callFrameId.split(".")[2]; |
| 603 | |
| 604 | function allScopes() { |
| 605 | const scopes = []; |
| 606 | for (let i = 0; i < frame.scopeChain.length; i++) { |
| 607 | scopes.push(this.execStateScope(frame, i)); |
| 608 | } |
| 609 | return scopes; |
| 610 | } |
| 611 | |
| 612 | return { sourceColumn : () => column, |
| 613 | sourceLine : () => line + 1, |
no test coverage detected