Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Destructuring assignment in REPL throws Uncaught TypeError: Cannot read properties of undefined (reading 'type') #53328

Closed
lukehaas opened this issue Jun 4, 2024 · 2 comments · Fixed by #53331
Labels
repl Issues and PRs related to the REPL subsystem.

Comments

@lukehaas
Copy link
Contributor

lukehaas commented Jun 4, 2024

Version

20.12.1

Platform

Darwin arm64

Subsystem

No response

What steps will reproduce the bug?

Start the REPL with node, then run this line:

var { ...rest } = await {}

How often does it reproduce? Is there a required condition?

100%

What is the expected behaviour? Why is that the expected behaviour?

No error should be thrown.

What do you see instead?

The following error:

Uncaught TypeError: Cannot read properties of undefined (reading 'type')
    at registerVariableDeclarationIdentifiers (node:internal/repl/await:98:22)
    at node:internal/repl/await:107:15
    at Array.forEach (<anonymous>)
    at registerVariableDeclarationIdentifiers (node:internal/repl/await:106:13)
    at node:internal/repl/await:119:9
    at Array.forEach (<anonymous>)
    at VariableDeclaration (node:internal/repl/await:118:7)
    at visitors.<computed> [as VariableDeclaration] (node:internal/repl/await:147:5)
    at c (node:internal/deps/acorn/acorn-walk/dist/walk:58:37)
    at skipThrough (node:internal/deps/acorn/acorn-walk/dist/walk:186:39)

Additional information

The issue is related to how the REPL handles top-level await.

@avivkeller
Copy link
Member

Hi! Could you possibly reformat your issue, it's a bit hard to read when the markdown and code are intertwined

@avivkeller avivkeller added repl Issues and PRs related to the REPL subsystem. repro-exists labels Jun 4, 2024
@avivkeller
Copy link
Member

avivkeller commented Jun 4, 2024

I'm able to reproduce:

~ node          
Welcome to Node.js v22.2.0.
Type ".help" for more information.
> var { ...rest } = await {}
Uncaught TypeError: Cannot read properties of undefined (reading 'type')
    at registerVariableDeclarationIdentifiers (node:internal/repl/await:98:22)
    at node:internal/repl/await:107:15
    at Array.forEach (<anonymous>)
    at registerVariableDeclarationIdentifiers (node:internal/repl/await:106:13)
    at node:internal/repl/await:119:9
    at Array.forEach (<anonymous>)
    at VariableDeclaration (node:internal/repl/await:118:7)
    at visitors.<computed> [as VariableDeclaration] (node:internal/repl/await:147:5)
    at c (node:internal/deps/acorn/acorn-walk/dist/walk:58:37)
    at skipThrough (node:internal/deps/acorn/acorn-walk/dist/walk:186:39)

CC @nodejs/repl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
repl Issues and PRs related to the REPL subsystem.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants