(id)
| 662 | } |
| 663 | |
| 664 | eventDataScriptSource(id) { |
| 665 | const {msgid, msg} = this.createMessage( |
| 666 | "Debugger.getScriptSource", { scriptId : String(id) }); |
| 667 | this.sendMessage(msg); |
| 668 | const reply = this.takeReplyChecked(msgid); |
| 669 | return reply.result.scriptSource; |
| 670 | } |
| 671 | |
| 672 | eventDataScriptSetSource(id, src) { |
| 673 | const {msgid, msg} = this.createMessage( |
no test coverage detected