MainThreadVM.h 210 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibJS/Forward.h>
  8. namespace Web::Bindings {
  9. JS::VM& main_thread_vm();
  10. }