You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The keys should be in the reverse order because the 'local' identifier node will come before the 'exported' node. For example:
var a; export { a as b };
'local' is 'a'
'exported' is 'b'
This is the opposite for ImportSpecifier so its keys are correct.
The text was updated successfully, but these errors were encountered:
VisitorKeys = {
...
ExportSpecifier: ['exported', 'local'],
The keys should be in the reverse order because the 'local' identifier node will come before the 'exported' node. For example:
var a; export { a as b };
'local' is 'a'
'exported' is 'b'
This is the opposite for ImportSpecifier so its keys are correct.
The text was updated successfully, but these errors were encountered: