mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 11:44:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // This file was procedurally generated from the following sources:
 | |
| // - src/function-forms/forbidden-ext-direct-access-prop-arguments.case
 | |
| // - src/function-forms/forbidden-extensions/bullet-one/async-func-expr-named.template
 | |
| /*---
 | |
| description: Forbidden extension, f.arguments (async function named expression)
 | |
| esid: sec-async-function-definitions
 | |
| features: [arrow-function, async-functions]
 | |
| flags: [generated, noStrict, async]
 | |
| info: |
 | |
|     AsyncFunctionExpression :
 | |
|       async function BindingIdentifier ( FormalParameters ) { AsyncFunctionBody }
 | |
| 
 | |
| 
 | |
|     ECMAScript function objects defined using syntactic constructors in strict mode code must
 | |
|     not be created with own properties named "caller" or "arguments". Such own properties also
 | |
|     must not be created for function objects defined using an ArrowFunction, MethodDefinition,
 | |
|     GeneratorDeclaration, GeneratorExpression, AsyncGeneratorDeclaration, AsyncGeneratorExpression,
 | |
|     ClassDeclaration, ClassExpression, AsyncFunctionDeclaration, AsyncFunctionExpression, or
 | |
|     AsyncArrowFunction regardless of whether the definition is contained in strict mode code.
 | |
|     Built-in functions, strict functions created using the Function constructor, generator functions
 | |
|     created using the Generator constructor, async functions created using the AsyncFunction
 | |
|     constructor, and functions created using the bind method also must not be created with such own
 | |
|     properties.
 | |
| 
 | |
| ---*/
 | |
| 
 | |
| 
 | |
| var callCount = 0;
 | |
| var f = async function f() {
 | |
|   assert.sameValue(f.hasOwnProperty("arguments"), false);
 | |
|   callCount++;
 | |
| }
 | |
| 
 | |
| f()
 | |
|   .then(() => {
 | |
|     assert.sameValue(callCount, 1, 'function body evaluated');
 | |
|   }, $DONE).then($DONE, $DONE);
 |