Bug 1960694 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

One issue seems to be that [this code](https://searchfox.org/mozilla-central/source/devtools/server/actors/thread.js#902-908) assumes that there is always at least one argument in the frame but if there isn't (see the `frame.arguments` watch expression in the screenshot) then we evaluate the expression `[_event]` with bindings `{ _event: undefined }` and end up constructing a message with `arguments: [undefined]` (I would have expected `arguments: [{ type: "undefined" }]`).

Back to Bug 1960694 Comment 1