mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	Not implementing any prototype functions yet, but stubbing out async generator infrastructure will allow us to make some progress in that direction.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			465 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			465 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <LibJS/Runtime/Completion.h>
 | 
						|
#include <LibJS/Runtime/PromiseReaction.h>
 | 
						|
 | 
						|
namespace JS {
 | 
						|
 | 
						|
// 27.6.3.1 AsyncGeneratorRequest Records, https://tc39.es/ecma262/#sec-asyncgeneratorrequest-records
 | 
						|
struct AsyncGeneratorRequest {
 | 
						|
    Completion completion;        // [[Completion]]
 | 
						|
    PromiseCapability capability; // [[Capability]]
 | 
						|
};
 | 
						|
 | 
						|
}
 |