mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00

...instead of specially handling JS::Completion. This makes it possible for LibWeb/LibJS to have full control over how these things are made, stored, and visited (whenever). Fixes an issue where we couldn't roundtrip a JS exception through Wasm.
22 lines
489 B
C++
22 lines
489 B
C++
/*
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWasm/AbstractMachine/Configuration.h>
|
|
|
|
namespace Wasm {
|
|
|
|
struct Interpreter {
|
|
virtual ~Interpreter() = default;
|
|
virtual void interpret(Configuration&) = 0;
|
|
virtual Trap trap() const = 0;
|
|
virtual bool did_trap() const = 0;
|
|
virtual void clear_trap() = 0;
|
|
virtual void visit_external_resources(HostVisitOps const&) { }
|
|
};
|
|
|
|
}
|