(objectId)
| 412 | } |
| 413 | |
| 414 | getProperties(objectId) { |
| 415 | const {msgid, msg} = this.createMessage( |
| 416 | "Runtime.getProperties", { objectId : objectId, ownProperties: true }); |
| 417 | this.sendMessage(msg); |
| 418 | const reply = this.takeReplyChecked(msgid); |
| 419 | return reply.result.result; |
| 420 | } |
| 421 | |
| 422 | getLocalScopeDetails(frame) { |
| 423 | const scopes = frame.scopeChain; |
no test coverage detected