ExportAllDeclaration is updated to have member exported.
parseExportDeclaration is updated to accept as someIdentifier in export * from 'some-module'
tests are updated
For test262 we added test/language/module-code/early-dup-export-as-star-as.js and test/language/module-code/early-dup-export-star-as-dflt.js to whitelist because of #2054. This should be addressed in another PR.
This PR fixes #2053.
ExportAllDeclaration
is updated to have memberexported
.parseExportDeclaration
is updated to acceptas someIdentifier
inexport * from 'some-module'
test/language/module-code/early-dup-export-as-star-as.js
andtest/language/module-code/early-dup-export-star-as-dflt.js
to whitelist because of #2054. This should be addressed in another PR.