diff options
author | Linus Groh <mail@linusgroh.de> | 2022-05-05 08:47:36 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-05 22:40:57 +0200 |
commit | 0c65624a32e0af2961c32a54f4ea8147397c52ab (patch) | |
tree | 10000c2afc723e9c4cabe49ed346365a5897cd3e /Userland/Libraries/LibJS/Forward.h | |
parent | 2c68ec90974918a6eb3c2e9a6d3169bd3c840f47 (diff) | |
download | serenity-0c65624a32e0af2961c32a54f4ea8147397c52ab.zip |
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.
Diffstat (limited to 'Userland/Libraries/LibJS/Forward.h')
-rw-r--r-- | Userland/Libraries/LibJS/Forward.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Forward.h b/Userland/Libraries/LibJS/Forward.h index 60adffd533..dbc3641854 100644 --- a/Userland/Libraries/LibJS/Forward.h +++ b/Userland/Libraries/LibJS/Forward.h @@ -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; |