evaluate_at_frame
Evaluate JavaScript expressions within a paused call frame, accessing local variables, closures, and the current 'this' object. Works only when debugger is paused.
Instructions
Evaluate a JavaScript expression in the scope of a paused call frame. Unlike evaluate_js, this has access to local variables, closure variables, and the current this. Only works when execution is paused.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| expression | Yes | JS expression to evaluate | |
| frameIndex | No | Call frame index (0 = top frame); use get_debugger_state to find available frames |