summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Forward.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-05-05 08:47:36 +0200
committerLinus Groh <mail@linusgroh.de>2022-05-05 22:40:57 +0200
commit0c65624a32e0af2961c32a54f4ea8147397c52ab (patch)
tree10000c2afc723e9c4cabe49ed346365a5897cd3e /Userland/Libraries/LibJS/Forward.h
parent2c68ec90974918a6eb3c2e9a6d3169bd3c840f47 (diff)
downloadserenity-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.h4
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;