()
| 405 | } |
| 406 | |
| 407 | function getCurrentLocation() { |
| 408 | if (!selectedFrame) { |
| 409 | throw new ERR_DEBUGGER_ERROR('Requires execution to be paused'); |
| 410 | } |
| 411 | return selectedFrame.location; |
| 412 | } |
| 413 | |
| 414 | function isCurrentScript(script) { |
| 415 | return selectedFrame && getCurrentLocation().scriptId === script.scriptId; |
no outgoing calls
no test coverage detected
searching dependent graphs…