mirror of https://github.com/tc39/test262.git
Corrections to export * specifier paths. Fixes gh-1883 (#1894)
This commit is contained in:
parent
cb58cbdd5a
commit
757491d4f8
|
@ -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';
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue