LibJS+LibWeb: Do not return error from VM::create

This never returns an error to propogate, also allowing ErrorOr
to be removed from creating the main thread VM.
This commit is contained in:
Shannon Booth 2025-04-24 15:46:51 +12:00 committed by Andreas Kling
commit 8263a9863f
Notes: github-actions[bot] 2025-04-25 14:45:48 +00:00
12 changed files with 13 additions and 15 deletions

View file

@ -47,7 +47,7 @@ enum class EvalMode {
class VM : public RefCounted<VM> {
public:
static ErrorOr<NonnullRefPtr<VM>> create(OwnPtr<Agent> = {});
static NonnullRefPtr<VM> create(OwnPtr<Agent> = {});
~VM();
GC::Heap& heap() { return m_heap; }