-
-
Notifications
You must be signed in to change notification settings - Fork 33.5k
Closed
Labels
debuggerIssues and PRs related to the debugger subsystem.Issues and PRs related to the debugger subsystem.replIssues and PRs related to the REPL subsystem.Issues and PRs related to the REPL subsystem.
Description
Version
v19.7.0
Platform
No response
Subsystem
No response
What steps will reproduce the bug?
Evaluating { a: 1 }
in the REPL and the debugger have different result
% node
> { a: 1 }
{ a: 1 }
% node inspect app.js
debug> { a: 1 }
1
How often does it reproduce? Is there a required condition?
Always
What is the expected behavior?
Like REPL, the result of debugger will be
% node inspect app.js
debug> { a: 1 }
{ a: 1 }
What do you see instead?
% node inspect app.js
debug> { a: 1 }
1
Additional information
The results of { a: 1 }
in other runtimes:
-
ChromeDevTools:
{ a: 1 }
-
Safari WebInspector:
{ a: 1 }
We have a similar bug (#45964) but we have not fixed yet and it was closed
Metadata
Metadata
Assignees
Labels
debuggerIssues and PRs related to the debugger subsystem.Issues and PRs related to the debugger subsystem.replIssues and PRs related to the REPL subsystem.Issues and PRs related to the REPL subsystem.