1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

LibJS: Add AsyncGenerator / AsyncGeneratorPrototype

Not implementing any prototype functions yet, but stubbing out async
generator infrastructure will allow us to make some progress in that
direction.
This commit is contained in:
Linus Groh 2022-05-05 08:47:36 +02:00
parent 2c68ec9097
commit 0c65624a32
10 changed files with 162 additions and 9 deletions

View file

@ -196,8 +196,10 @@ class ProxyObject;
class ProxyConstructor;
// Not included in JS_ENUMERATE_NATIVE_OBJECTS due to missing distinct constructor
class GeneratorPrototype;
class AsyncFromSyncIteratorPrototype;
class AsyncGenerator;
class AsyncGeneratorPrototype;
class GeneratorPrototype;
class TypedArrayConstructor;
class TypedArrayPrototype;