mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			539 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			539 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2015 the V8 project authors. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
/*---
 | 
						|
esid: sec-map-iterable
 | 
						|
description: >
 | 
						|
  new Map returns abrupt from getting Map.prototype.set.
 | 
						|
info: |
 | 
						|
  Map ( [ iterable ] )
 | 
						|
 | 
						|
  ...
 | 
						|
  7. Else,
 | 
						|
    a. Let adder be Get(map, "add").
 | 
						|
    b. ReturnIfAbrupt(adder).
 | 
						|
---*/
 | 
						|
 | 
						|
Object.defineProperty(Map.prototype, 'set', {
 | 
						|
  get: function() {
 | 
						|
    throw new Test262Error();
 | 
						|
  }
 | 
						|
});
 | 
						|
 | 
						|
new Map();
 | 
						|
 | 
						|
assert.throws(Test262Error, function() {
 | 
						|
  new Map([]);
 | 
						|
});
 |