mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 03:34:08 +01:00 
			
		
		
		
	* Automated assertion message update: Array.from * Automated assertion message update: Array.isArray * Automated assertion message update: Array length property * Automated assertion message update: Array.of * Automated assertion message update: Array * Automated assertion message update: Array.prototype.at * Automated assertion message update: Array.prototype.concat * Automated assertion message update: compareArray -> assert.compareArray
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			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-array.from
 | |
| description: Error setting property on result value (traversed via iterator)
 | |
| info: |
 | |
|     [...]
 | |
|     6. If usingIterator is not undefined, then
 | |
|        [...]
 | |
|        g. Repeat
 | |
|           [...]
 | |
|           ix. Let defineStatus be CreateDataPropertyOrThrow(A, Pk,
 | |
|               mappedValue).
 | |
|           x. If defineStatus is an abrupt completion, return
 | |
|              IteratorClose(iterator, defineStatus).
 | |
| features: [Symbol.iterator]
 | |
| ---*/
 | |
| 
 | |
| var constructorSetsIndex0ConfigurableFalse = function() {
 | |
|   Object.defineProperty(this, '0', {
 | |
|     writable: true,
 | |
|     configurable: false
 | |
|   });
 | |
| };
 | |
| var closeCount = 0;
 | |
| var items = {};
 | |
| var nextResult = {
 | |
|   done: false
 | |
| };
 | |
| 
 | |
| items[Symbol.iterator] = function() {
 | |
|   return {
 | |
|     return: function() {
 | |
|       closeCount += 1;
 | |
|     },
 | |
|     next: function() {
 | |
|       var result = nextResult;
 | |
| 
 | |
|       nextResult = {
 | |
|         done: true
 | |
|       };
 | |
| 
 | |
|       return result;
 | |
|     }
 | |
|   };
 | |
| };
 | |
| 
 | |
| assert.throws(TypeError, function() {
 | |
|   Array.from.call(constructorSetsIndex0ConfigurableFalse, items);
 | |
| }, 'Array.from.call(constructorSetsIndex0ConfigurableFalse, items) throws a TypeError exception');
 | |
| 
 | |
| assert.sameValue(closeCount, 1, 'The value of closeCount is expected to be 1');
 |