[Fixed] [Debugger] Impossible to expand object in the watch window

The 3 snapshots below show the watch window in the 3 frames of the call stack when a breakpoint is hit:

image

image

image

I can expand all the objects in the local and the global variables with the exception of the ones highlighted with a red circle. They are the same object seen in two different frames. Clicking on the chevron does nothing on the UI and shows nothing in the devtools console.

Thanks for raising

Does the chevron change direction at all?
If not - do you see any errors in the browser console?
Are you able to create a minimal example?
(I tried but couldn’t create an example that misbehaved)

We lazy load attributes, but if we don’t find any meaningful attributes when you click the chevron, it should still rotate to indicate it was clicked

I think I found the culprit: a class with the name property can’t be expanded:

Ah, so the debugger might be looking for the property’s “setter”, but it doesn’t have one…

Edit: Does adding a setter fix the problem?

Ah - this was because the debugger paused all user code while it was paused
so trying to get the “name” property didn’t work since it had to execute user code to get the value

We’ll ship a fix soon

1 Like