(session, scopeId)
| 19 | let scopeCallback = null; |
| 20 | |
| 21 | function checkScope(session, scopeId) { |
| 22 | session.post('Runtime.getProperties', { |
| 23 | 'objectId': scopeId, |
| 24 | 'ownProperties': false, |
| 25 | 'accessorPropertiesOnly': false, |
| 26 | 'generatePreview': true |
| 27 | }, scopeCallback); |
| 28 | } |
| 29 | |
| 30 | function debuggerPausedCallback(session, notification) { |
| 31 | const params = notification.params; |
no test coverage detected