instn-star-props-nrml-star_FIXTURE.js (887B)
1 // |reftest| skip -- not a test file 2 // Copyright (C) 2016 the V8 project authors. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 var notExportedVar2; 6 let notExportedLet2; 7 const notExportedConst2 = null; 8 function notExportedFunc2() {} 9 function* notExportedGen2() {} 10 class notExportedClass2 {} 11 12 var starBindingId; 13 14 export var starVarDecl; 15 export let starLetDecl; 16 export const starConstDecl = null; 17 export function starFuncDecl() {} 18 export function* starGenDecl() {} 19 export class starClassDecl {} 20 export { starBindingId }; 21 export { starBindingId as starIdName }; 22 export { starIndirectIdName } from './instn-star-props-nrml-indirect_FIXTURE.js'; 23 export { starIndirectIdName as starIndirectIdName2 } from './instn-star-props-nrml-indirect_FIXTURE.js'; 24 export * as starIndirectNamespaceBinding from './instn-star-props-nrml-indirect_FIXTURE.js';