tor-browser

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

get-nested-namespace-props-nrml-2_FIXTURE.js (894B)


      1 // |reftest| skip -- not a test file
      2 // Copyright (C) 2018 Valerie Young. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 var notExportedVar;
      6 let notExportedLet;
      7 const notExportedConst = null;
      8 function notExportedFunc() {}
      9 function* notExportedGen() {}
     10 class notExportedClass {}
     11 
     12 var starAsBindingId;
     13 
     14 export var starAsVarDecl;
     15 export let starAsLetDecl;
     16 export const starAsConstDecl = null;
     17 export function starAsFuncDecl() {}
     18 export function* starAsGenDecl() {}
     19 export class starAsClassDecl {}
     20 export { starAsBindingId };
     21 export { starAsBindingId as starIdName };
     22 export { starAsIndirectIdName } from './get-nested-namespace-props-nrml-3_FIXTURE.js';
     23 export { starAsIndirectIdName as starAsIndirectIdName2 } from './get-nested-namespace-props-nrml-3_FIXTURE.js';
     24 export * as namespaceBinding from './get-nested-namespace-props-nrml-3_FIXTURE.js';;