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

This commit is contained in:
Rick Waldron 2018-10-24 12:17:56 -04:00 committed by Leo Balter
parent cb58cbdd5a
commit 757491d4f8
2 changed files with 2 additions and 2 deletions

View File

@ -16,4 +16,4 @@ throw "Test262: This statement should not be evaluated.";
var x;
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';

View File

@ -16,4 +16,4 @@ throw "Test262: This statement should not be evaluated.";
var 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';