tor-browser

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

export-expname-import-string-binding.js (524B)


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