Skip to content
Snippets Groups Projects
Commit 757491d4 authored by Rick Waldron's avatar Rick Waldron Committed by Leo Balter
Browse files

Corrections to export * specifier paths. Fixes gh-1883 (#1894)

parent cb58cbdd
Branches
No related tags found
No related merge requests found
...@@ -16,4 +16,4 @@ throw "Test262: This statement should not be evaluated."; ...@@ -16,4 +16,4 @@ throw "Test262: This statement should not be evaluated.";
var x; var x;
export { x as z }; export { x as z };
export * as z from "early-dup-export-as-star-as.js"; export * as z from './early-dup-export-as-star-as.js';
...@@ -16,4 +16,4 @@ throw "Test262: This statement should not be evaluated."; ...@@ -16,4 +16,4 @@ throw "Test262: This statement should not be evaluated.";
var x; var x;
export default x; export default x;
export * as default from 'early-dup-export-start-as-dflt.js'; export * as default from './early-dup-export-start-as-dflt.js';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment