MCPcopy Index your code
hub / github.com/nodejs/node / evaluateOnCallFrame

Method evaluateOnCallFrame

deps/v8/test/debugger/test-api.js:565–578  ·  view source on GitHub ↗
(frame, expr, throw_on_side_effect = false)

Source from the content-addressed store, hash-verified

563 }
564
565 evaluateOnCallFrame(frame, expr, throw_on_side_effect = false) {
566 const frameid = frame.callFrameId;
567 const {msgid, msg} = this.createMessage(
568 "Debugger.evaluateOnCallFrame",
569 { callFrameId : frameid,
570 expression : expr,
571 throwOnSideEffect : throw_on_side_effect,
572 });
573 this.sendMessage(msg);
574 const reply = this.takeReplyChecked(msgid);
575
576 const result = reply.result.result;
577 return this.reconstructRemoteObject(result);
578 }
579
580 frameReceiver(frame) {
581 return this.reconstructRemoteObject(frame.this);

Callers 15

execStateFrameMethod · 0.95
evalInCurrentContextFunction · 0.80
setBreakpointFunction · 0.80
handleDebuggerPausedFunction · 0.80
checkVariablesFunction · 0.80
evaluateOnDumpFunction · 0.80
contFunction · 0.80
checkFunction · 0.80

Calls 4

createMessageMethod · 0.95
sendMessageMethod · 0.95
takeReplyCheckedMethod · 0.95

Tested by

no test coverage detected