mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-29 18:53:58 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			538 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			538 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (C) 2020 Rick Waldron. All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| esid: sec-aggregate-error
 | |
| description: >
 | |
|   NewTarget is undefined
 | |
| info: |
 | |
|   AggregateError ( errors, message )
 | |
| 
 | |
|   1. If NewTarget is undefined, let newTarget be the active function object, else let newTarget be NewTarget.
 | |
| 
 | |
| features: [AggregateError]
 | |
| ---*/
 | |
| 
 | |
| var obj = AggregateError([], '');
 | |
| 
 | |
| assert.sameValue(Object.getPrototypeOf(obj), AggregateError.prototype);
 | |
| assert(obj instanceof AggregateError);
 |