mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-04 23:30:59 +00:00
18 lines
217 B
C
18 lines
217 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace JS {
|
||
|
|
|
||
|
|
enum class FunctionKind {
|
||
|
|
Generator,
|
||
|
|
Regular,
|
||
|
|
Async,
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|