instn-star-props-nrml-1_FIXTURE.js (932B)
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 notExportedVar1; 6 let notExportedLet1; 7 const notExportedConst1 = null; 8 function notExportedFunc1() {} 9 function* notExportedGen1() {} 10 class notExportedClass1 {} 11 12 var localBindingId; 13 14 export var localVarDecl; 15 export let localLetDecl; 16 export const localConstDecl = null; 17 export function localFuncDecl() {} 18 export function* localGenDecl() {} 19 export class localClassDecl {} 20 export { localBindingId }; 21 export { localBindingId as localIdName }; 22 export { indirectIdName } from './instn-star-props-nrml-indirect_FIXTURE.js'; 23 export { indirectIdName as indirectIdName2 } from './instn-star-props-nrml-indirect_FIXTURE.js'; 24 export * as namespaceBinding from './instn-star-props-nrml-indirect_FIXTURE.js'; 25 26 export * from './instn-star-props-nrml-star_FIXTURE.js';