LibWeb: Remove exceptional return types from infallible stream IDL

This commit is contained in:
Timothy Flynn
2024-04-29 18:34:19 -04:00
committed by Andreas Kling
parent 572a7bb313
commit 2d4d16ac37
Notes: sideshowbarker 2024-07-16 23:51:07 +09:00
15 changed files with 26 additions and 29 deletions

View File

@@ -152,7 +152,7 @@ private:
JS_DEFINE_ALLOCATOR(DefaultReaderReadRequest);
// https://streams.spec.whatwg.org/#default-reader-read
WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise>> ReadableStreamDefaultReader::read()
JS::NonnullGCPtr<JS::Promise> ReadableStreamDefaultReader::read()
{
auto& realm = this->realm();