export-expname-from-string-binding.js (671B)
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] 11 12 NamedExports[From] : 13 [+From] ModuleExportName as IdentifierName 14 15 flags: [module] 16 features: [arbitrary-module-namespace-names] 17 ---*/ 18 import * as Scouts from "./export-expname-from-string-binding.js"; 19 export { "☿" as Ami } from "./export-expname_FIXTURE.js"; 20 21 assert.sameValue(Scouts["☿"], undefined); 22 assert.sameValue(Scouts.Ami, globalThis.Mercury); 23 24 reportCompare(0, 0);