tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

export-expname-from-star.js (509B)


      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 : `*`
      7  esid: prod-ExportFromClause
      8 info: |
      9  ExportFromClause :
     10    `*`
     11 
     12 flags: [module]
     13 features: [arbitrary-module-namespace-names]
     14 ---*/
     15 import * as Scouts from "./export-expname-from-star.js";
     16 export * from "./export-expname_FIXTURE.js";
     17 
     18 assert.sameValue(Scouts["☿"], globalThis.Mercury);
     19 
     20 reportCompare(0, 0);