1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:37:45 +00:00

LibJS: Make FunctionKind enum class a u8

This commit is contained in:
Andreas Kling 2022-11-26 20:06:08 +01:00 committed by Linus Groh
parent dd1720f2cb
commit 0b2f86de71

View file

@ -8,7 +8,7 @@
namespace JS {
enum class FunctionKind {
enum class FunctionKind : u8 {
Normal,
Generator,
Async,