FunctionKind.h 235 B

123456789101112131415161718
  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. Normal,
  10. Generator,
  11. Async,
  12. AsyncGenerator
  13. };
  14. }