Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / instn-star-props-nrml-1_FIXTURE.js
blob7749021d514837d1acdc38c0424f7c73339d5e97
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.
5 var notExportedVar1;
6 let notExportedLet1;
7 const notExportedConst1 = null;
8 function notExportedFunc1() {}
9 function* notExportedGen1() {}
10 class notExportedClass1 {}
12 var localBindingId;
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';
26 export * from './instn-star-props-nrml-star_FIXTURE.js';