mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 13:44:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/declarations/function.case
 | 
						|
// - src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-inner-block-var-declaration-after.template
 | 
						|
/*---
 | 
						|
description: redeclaration with FunctionDeclaration (VariableDeclaration in a BlockStatement inside a BlockStatement)
 | 
						|
esid: sec-block-static-semantics-early-errors
 | 
						|
flags: [generated]
 | 
						|
negative:
 | 
						|
  phase: parse
 | 
						|
  type: SyntaxError
 | 
						|
info: |
 | 
						|
    Block : { StatementList }
 | 
						|
 | 
						|
    It is a Syntax Error if any element of the LexicallyDeclaredNames of
 | 
						|
    StatementList also occurs in the VarDeclaredNames of StatementList.
 | 
						|
 | 
						|
    Static Semantics: VarDeclaredNames
 | 
						|
 | 
						|
    Block : { }
 | 
						|
 | 
						|
    1. Return a new empty List.
 | 
						|
 | 
						|
    StatementList : StatementList StatementListItem
 | 
						|
 | 
						|
    1. Let names be VarDeclaredNames of StatementList.
 | 
						|
    2. Append to names the elements of the VarDeclaredNames of StatementListItem.
 | 
						|
    3. Return names.
 | 
						|
 | 
						|
    StatementListItem : Declaration
 | 
						|
 | 
						|
    1. Return a new empty List.
 | 
						|
 | 
						|
---*/
 | 
						|
 | 
						|
 | 
						|
$DONOTEVALUATE();
 | 
						|
 | 
						|
{ function f() {} { var f; } }
 |