export-star-as-dflt.js (1237B)
1 // |reftest| module 2 // Copyright (C) 2019 Adrian Heine. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 /*--- 5 description: A default export cannot be provided by an export * or export * from "mod" declaration 6 esid: sec-static-semantics-exportentriesformodule 7 info: | 8 15.2..3.6 Static Semantics: ExportEntriesForModule 9 10 [...] 11 12 ExportFromClause : * as IdentifierName 13 14 1. Let exportName be the StringValue of IdentifierName. 15 2. Let entry be the ExportEntry Record { [[ModuleRequest]]: module, [[ImportName]]: "*", [[LocalName]]: null, [[ExportName]]: exportName }. 16 3. Return a new List containing entry. 17 18 flags: [module] 19 features: [export-star-as-namespace-from-module] 20 ---*/ 21 22 export * as default from './export-star-as-dflt_FIXTURE.js'; 23 import Self from './export-star-as-dflt.js'; 24 import { default as named } from './export-star-as-dflt.js'; 25 import * as ns from './export-star-as-dflt.js'; 26 27 assert.sameValue(Self.x, 1, 'Module was re-exported under the name `default`'); 28 assert.sameValue(named.x, 1, 'named binding was re-exported under the name `default`'); 29 assert.sameValue(ns.default.x, 1, 'namespace was re-exported under the name `default`'); 30 31 reportCompare(0, 0);