1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:17:35 +00:00

LibJS: Make Cell::initialize() return void

Stop worrying about tiny OOMs.

Work towards #20405
This commit is contained in:
Andreas Kling 2023-08-07 08:41:28 +02:00
parent fde26c53f0
commit 18c54d8d40
804 changed files with 1330 additions and 2171 deletions

View file

@ -27,12 +27,10 @@ WebGLContextEvent::WebGLContextEvent(JS::Realm& realm, FlyString const& type, We
WebGLContextEvent::~WebGLContextEvent() = default;
JS::ThrowCompletionOr<void> WebGLContextEvent::initialize(JS::Realm& realm)
void WebGLContextEvent::initialize(JS::Realm& realm)
{
MUST_OR_THROW_OOM(Base::initialize(realm));
Base::initialize(realm);
set_prototype(&Bindings::ensure_web_prototype<Bindings::WebGLContextEventPrototype>(realm, "WebGLContextEvent"));
return {};
}
}

View file

@ -30,7 +30,7 @@ public:
private:
WebGLContextEvent(JS::Realm&, FlyString const& type, WebGLContextEventInit const& event_init);
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
virtual void initialize(JS::Realm&) override;
String m_status_message;
};

View file

@ -57,12 +57,10 @@ WebGLRenderingContext::WebGLRenderingContext(JS::Realm& realm, HTML::HTMLCanvasE
WebGLRenderingContext::~WebGLRenderingContext() = default;
JS::ThrowCompletionOr<void> WebGLRenderingContext::initialize(JS::Realm& realm)
void WebGLRenderingContext::initialize(JS::Realm& realm)
{
MUST_OR_THROW_OOM(Base::initialize(realm));
Base::initialize(realm);
set_prototype(&Bindings::ensure_web_prototype<Bindings::WebGLRenderingContextPrototype>(realm, "WebGLRenderingContext"));
return {};
}
}

View file

@ -21,7 +21,7 @@ public:
virtual ~WebGLRenderingContext() override;
private:
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
virtual void initialize(JS::Realm&) override;
WebGLRenderingContext(JS::Realm&, HTML::HTMLCanvasElement&, NonnullOwnPtr<GL::GLContext> context, WebGLContextAttributes context_creation_parameters, WebGLContextAttributes actual_context_parameters);
};