mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:12:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			393 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			393 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| test("assignment to function call", () => {
 | |
|     expect(() => {
 | |
|         function foo() {}
 | |
|         foo() = "foo";
 | |
|     }).toThrowWithMessage(ReferenceError, "Invalid left-hand side in assignment");
 | |
| });
 | |
| 
 | |
| test("assignment to inline function call", () => {
 | |
|     expect(() => {
 | |
|         (function () {})() = "foo";
 | |
|     }).toThrowWithMessage(ReferenceError, "Invalid left-hand side in assignment");
 | |
| });
 | 
