ladybird/Libraries/LibJS/Runtime/FunctionKind.h

21 lines
263 B
C
Raw Normal View History

/*
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
namespace JS {
enum class FunctionKind : u8 {
Normal,
Generator,
Async,
2021-11-15 01:53:24 +01:00
AsyncGenerator
};
}