LibJS: Rename FunctionKind::{Regular => Normal}

This is what CreateDynamicFunction calls it.
This commit is contained in:
Linus Groh 2022-01-15 00:30:02 +01:00
commit 0c73fbbba5
Notes: sideshowbarker 2024-07-17 20:48:53 +09:00
8 changed files with 24 additions and 24 deletions

View file

@ -9,8 +9,8 @@
namespace JS {
enum class FunctionKind {
Normal,
Generator,
Regular,
Async,
AsyncGenerator
};