vscode-debug-visualizer icon indicating copy to clipboard operation
vscode-debug-visualizer copied to clipboard

debug visualizer doesn't get frame id correctly when selecting frame from call stack

Open ono-max opened this issue 3 years ago • 0 comments

Sample script(Ruby)

a=1
def foo()
  a = 3
end
foo()
puts a

When I select frame id, which is the location of the caller of function foo(), I should get the value of a(which is 1), but I can't get it in debug visualizer. It would be great if we support it.

ono-max avatar Dec 07 '22 13:12 ono-max