blob: 7749021d514837d1acdc38c0424f7c73339d5e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// |reftest| skip -- not a test file
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
var notExportedVar1;
let notExportedLet1;
const notExportedConst1 = null;
function notExportedFunc1() {}
function* notExportedGen1() {}
class notExportedClass1 {}
var localBindingId;
export var localVarDecl;
export let localLetDecl;
export const localConstDecl = null;
export function localFuncDecl() {}
export function* localGenDecl() {}
export class localClassDecl {}
export { localBindingId };
export { localBindingId as localIdName };
export { indirectIdName } from './instn-star-props-nrml-indirect_FIXTURE.js';
export { indirectIdName as indirectIdName2 } from './instn-star-props-nrml-indirect_FIXTURE.js';
export * as namespaceBinding from './instn-star-props-nrml-indirect_FIXTURE.js';
export * from './instn-star-props-nrml-star_FIXTURE.js';
|