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

import parser loses override local keys #256

Closed
idoros opened this issue Aug 24, 2022 · 0 comments · Fixed by #258
Closed

import parser loses override local keys #256

idoros opened this issue Aug 24, 2022 · 0 comments · Fixed by #258
Labels
bug Something isn't working

Comments

@idoros
Copy link
Collaborator

idoros commented Aug 24, 2022

When importing both x and x as y, the named results are kept in a map from import-name to local names, overriding each other:

import [x, x as y] from 'file'; -> { named: { x: 'y' } }

import [x as y, x] from 'file'; -> { named: { x: 'x' } }

Map should have unique keys from local to import names

while both should output: { named: { x: 'x', y: 'x' } }

@idoros idoros added the bug Something isn't working label Aug 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant