Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / export-star-as-dflt.js
blobaf5f43abd7ba517e57f994b189f0e2d76042c1a5
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
10     [...]
12     ExportFromClause : * as IdentifierName
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.
18 flags: [module]
19 features: [export-star-as-namespace-from-module]
20 ---*/
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';
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`');
31 reportCompare(0, 0);