mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 19:53:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // This file was procedurally generated from the following sources:
 | |
| // - src/function-forms/eval-var-scope-syntax-err.case
 | |
| // - src/function-forms/error-no-strict/async-meth.template
 | |
| /*---
 | |
| description: sloppy direct eval in params introduces var (async method in sloppy code)
 | |
| esid: sec-async-function-definitions
 | |
| features: [default-parameters, async-functions]
 | |
| flags: [generated, async, noStrict]
 | |
| info: |
 | |
|     14.6 Async Function Definitions
 | |
| 
 | |
|     AsyncMethod :
 | |
|      async PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody }
 | |
| 
 | |
| 
 | |
|     
 | |
|     Runtime Semantics: IteratorBindingInitialization
 | |
|     FormalParameter : BindingElement
 | |
| 
 | |
|     1. Return the result of performing IteratorBindingInitialization for BindingElement with arguments iteratorRecord and environment.
 | |
| 
 | |
| ---*/
 | |
| 
 | |
| 
 | |
| var callCount = 0;
 | |
| 
 | |
| var obj = {
 | |
|   async method(a = eval("var a = 42")) {
 | |
|     
 | |
|     callCount = callCount + 1;
 | |
|   }
 | |
| };
 | |
| 
 | |
| obj.method()
 | |
|   .then(_ => {
 | |
|     throw new Test262Error('function should not be resolved');
 | |
|   }, error => assert.sameValue(error.constructor, SyntaxError))
 | |
|   .then(() => {
 | |
|     assert.sameValue(callCount, 0, 'function body is not evaluated');
 | |
|   }, $DONE)
 | |
|   .then($DONE, $DONE);
 |