mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 11:44:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			857 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			857 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (C) 2018 Valerie Young. All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| var notExportedVar;
 | |
| let notExportedLet;
 | |
| const notExportedConst = null;
 | |
| function notExportedFunc() {}
 | |
| function* notExportedGen() {}
 | |
| class notExportedClass {}
 | |
| 
 | |
| var starAsBindingId;
 | |
| 
 | |
| export var starAsVarDecl;
 | |
| export let starAsLetDecl;
 | |
| export const starAsConstDecl = null;
 | |
| export function starAsFuncDecl() {}
 | |
| export function* starAsGenDecl() {}
 | |
| export class starAsClassDecl {}
 | |
| export { starAsBindingId };
 | |
| export { starAsBindingId as starIdName };
 | |
| export { starAsIndirectIdName } from './get-nested-namespace-props-nrml-3_FIXTURE.js';
 | |
| export { starAsIndirectIdName as starAsIndirectIdName2 } from './get-nested-namespace-props-nrml-3_FIXTURE.js';
 | |
| export * as namespaceBinding from './get-nested-namespace-props-nrml-3_FIXTURE.js';;
 |