mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:02:45 +00:00 
			
		
		
		
	 a7073c3f1f
			
		
	
	
		a7073c3f1f
		
	
	
	
	
		
			
			From test262 documentation, this flag means:
    The test file should only be run when the [[CanBlock]] property of
    the Agent Record executing the file is `false`.
This patch stubs out the accessor for that internal slot and skips tests
with the CanBlockIsFalse if that internal slot is true.
		
	
			
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			397 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			397 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibJS/Runtime/Agent.h>
 | |
| 
 | |
| namespace JS {
 | |
| 
 | |
| // 9.7.2 AgentCanSuspend ( ), https://tc39.es/ecma262/#sec-agentcansuspend
 | |
| bool agent_can_suspend()
 | |
| {
 | |
|     // FIXME: 1. Let AR be the Agent Record of the surrounding agent.
 | |
|     // FIXME: 2. Return AR.[[CanBlock]].
 | |
|     return true;
 | |
| }
 | |
| 
 | |
| }
 |