mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 19:53:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			806 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			806 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.
 | |
| 
 | |
| /*---
 | |
| es6id: 25.2.1.1
 | |
| description: Assignment of function `name` attribute
 | |
| info: |
 | |
|     [...]
 | |
|     3. Return CreateDynamicFunction(C, NewTarget, "generator", args).
 | |
| 
 | |
|     ES6 19.2.1.1.1
 | |
|         RuntimeSemantics: CreateDynamicFunction(constructor, newTarget, kind, args)
 | |
| 
 | |
|     [...]
 | |
|     29. Perform SetFunctionName(F, "anonymous").
 | |
| includes: [propertyHelper.js]
 | |
| features: [generators]
 | |
| ---*/
 | |
| 
 | |
| var GeneratorFunction = Object.getPrototypeOf(function*() {}).constructor;
 | |
| 
 | |
| assert.sameValue(GeneratorFunction().name, 'anonymous');
 | |
| verifyNotEnumerable(GeneratorFunction(), 'name');
 | |
| verifyNotWritable(GeneratorFunction(), 'name');
 | |
| verifyConfigurable(GeneratorFunction(), 'name');
 |