LibJS: Parse async generator functions

This commit is contained in:
davidot 2021-11-15 01:53:24 +01:00 committed by Linus Groh
commit 0982a73d1d
Notes: sideshowbarker 2024-07-18 00:53:17 +09:00
13 changed files with 270 additions and 40 deletions

View file

@ -12,6 +12,7 @@ enum class FunctionKind {
Generator,
Regular,
Async,
AsyncGenerator
};
}