Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / export-expname-from-string.js
blob59c5c203a183b17bef30a8a611d7a74bbfaef5d3
1 // |reftest| module
2 // Copyright (C) 2020 Bradley Farias. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 description: >
6   ExportFromClause : NamedExports
7   esid: prod-ExportFromClause
8 info: |
9   ExportFromClause :
10     NamedExports[+From]
12   NamedExports[From] :
13     [+From] ModuleExportName
15   ModuleExportName : StringLiteral
17 flags: [module]
18 features: [arbitrary-module-namespace-names]
19 ---*/
20 import * as Scouts from "./export-expname-from-string.js";
21 export { "☿" } from "./export-expname_FIXTURE.js";
23 assert.sameValue(typeof Scouts["☿"], "function");
25 reportCompare(0, 0);