FunctionKind.h 217 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace JS {
  8. enum class FunctionKind {
  9. Generator,
  10. Regular,
  11. Async,
  12. };
  13. }