Coverage Report

Created: 2025-03-04 07:22

/src/serenity/Userland/Libraries/LibWeb/WebIDL/ExceptionOr.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) 2021-2023, Linus Groh <linusg@serenityos.org>
3
 *
4
 * SPDX-License-Identifier: BSD-2-Clause
5
 */
6
7
#pragma once
8
9
#include <AK/NonnullRefPtr.h>
10
#include <AK/Optional.h>
11
#include <AK/RefPtr.h>
12
#include <LibJS/Runtime/Completion.h>
13
#include <LibWeb/WebIDL/DOMException.h>
14
15
namespace Web::WebIDL {
16
17
#define ENUMERATE_SIMPLE_WEBIDL_EXCEPTION_TYPES(E) \
18
0
    E(EvalError)                                   \
19
0
    E(RangeError)                                  \
20
0
    E(ReferenceError)                              \
21
0
    E(TypeError)                                   \
22
0
    E(URIError)
23
24
#define E(x) x,
25
enum class SimpleExceptionType {
26
    ENUMERATE_SIMPLE_WEBIDL_EXCEPTION_TYPES(E)
27
};
28
#undef E
29
30
struct SimpleException {
31
    SimpleExceptionType type;
32
    Variant<String, StringView> message;
33
};
34
35
using Exception = Variant<SimpleException, JS::NonnullGCPtr<DOMException>, JS::Completion>;
36
37
template<typename ValueType>
38
class [[nodiscard]] ExceptionOr {
39
public:
40
    ExceptionOr()
41
    requires(IsSame<ValueType, Empty>)
42
0
        : m_result_or_exception(Empty {})
43
0
    {
44
0
    }
45
46
    ExceptionOr(ValueType const& result)
47
0
        : m_result_or_exception(result)
48
0
    {
49
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> >::ExceptionOr(JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> const&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned long>::ExceptionOr(unsigned long const&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::ExceptionOr(JS::Value const&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ElementInternals> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::ElementInternals> const&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::ExceptionOr(AK::Optional<URL::URL> const&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::ExceptionOr(AK::Vector<unsigned int, 0ul> const&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::SVG::SVGTransform> >::ExceptionOr(JS::NonnullGCPtr<Web::SVG::SVGTransform> const&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Range> >::ExceptionOr(JS::GCPtr<Web::DOM::Range> const&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Float32Array> >::ExceptionOr(JS::NonnullGCPtr<JS::Float32Array> const&)
50
51
    ExceptionOr(ValueType&& result)
52
0
        : m_result_or_exception(move(result))
53
0
    {
54
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::CSSStyleSheet> >::ExceptionOr(JS::NonnullGCPtr<Web::CSS::CSSStyleSheet>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<int>::ExceptionOr(int&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::ExceptionOr(unsigned int&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::ExceptionOr(AK::String&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::Animation> >::ExceptionOr(JS::NonnullGCPtr<Web::Animations::Animation>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::ExceptionOr(AK::Vector<Web::Animations::BaseKeyframe, 0ul>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::ExceptionOr(AK::Optional<double>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::ExceptionOr(Web::Bindings::CompositeOperationOrAuto&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::ExceptionOr(Web::Animations::BaseKeyframe&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::ExceptionOr(Web::Animations::BasePropertyIndexedKeyframe&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::KeyframeEffect> >::ExceptionOr(JS::NonnullGCPtr<Web::Animations::KeyframeEffect>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::MarkedVector<JS::Object*, 0ul> >::ExceptionOr(JS::MarkedVector<JS::Object*, 0ul>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::AnimationPlaybackEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::Animations::AnimationPlaybackEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::Document>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document*>::ExceptionOr(Web::DOM::Document*&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::Element>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CDATASection> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::CDATASection>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ProcessingInstruction> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::ProcessingInstruction>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Event> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::Event>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::Node>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document::PrefixAndTagName>::ExceptionOr(Web::DOM::Document::PrefixAndTagName&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Attr> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::Attr>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::FontFaceSet> >::ExceptionOr(JS::NonnullGCPtr<Web::CSS::FontFaceSet>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Set> >::ExceptionOr(JS::NonnullGCPtr<JS::Set>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Comment> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::Comment>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CustomEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::CustomEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::AnimationEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::CSS::AnimationEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::XMLDocument> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::XMLDocument>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentType> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::DocumentType>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::DocumentTimeline> >::ExceptionOr(JS::NonnullGCPtr<Web::Animations::DocumentTimeline>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::DocumentFragment>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::ExceptionOr(Web::DOM::QualifiedName&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::ExceptionOr(bool&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ShadowRoot> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::ShadowRoot>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Element const*>::ExceptionOr(Web::DOM::Element const*&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::ExceptionOr(JS::GCPtr<Web::DOM::Node>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Element> >::ExceptionOr(JS::GCPtr<Web::DOM::Element>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::EventTarget> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::EventTarget>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortSignal> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::AbortSignal>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::MutationObserver> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::MutationObserver>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Attr const*>::ExceptionOr(Web::DOM::Attr const*&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeIterator> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::NodeIterator>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeList> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::NodeList>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Range> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::Range>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<short>::ExceptionOr(short&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::Text>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMParsing::XMLSerializer> >::ExceptionOr(JS::NonnullGCPtr<Web::DOMParsing::XMLSerializer>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::DOMURL> >::ExceptionOr(JS::NonnullGCPtr<Web::DOMURL::DOMURL>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParams> >::ExceptionOr(JS::NonnullGCPtr<Web::DOMURL::URLSearchParams>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Fetch::Infrastructure::BodyWithType>::ExceptionOr(Web::Fetch::Infrastructure::BodyWithType&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::Blob> >::ExceptionOr(JS::NonnullGCPtr<Web::FileAPI::Blob>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Handle<Web::WebIDL::ArrayBufferView> >::ExceptionOr(JS::Handle<Web::WebIDL::ArrayBufferView>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::ExceptionOr(Web::Crypto::NormalizedAlgorithmAndParameter&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::SubjectPublicKey>::ExceptionOr(TLS::SubjectPublicKey&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::PrivateKey>::ExceptionOr(TLS::PrivateKey&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger> >::ExceptionOr(Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger> >::ExceptionOr(Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::ExceptionOr(Crypto::UnsignedBigInteger&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::ExceptionOr(JS::NonnullGCPtr<JS::ArrayBuffer>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::ExceptionOr(AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> >&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::ExceptionOr(JS::NonnullGCPtr<Web::Crypto::CryptoKey>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::ExceptionOr(JS::NonnullGCPtr<JS::Object>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::ExceptionOr(JS::Value&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRect> >::ExceptionOr(JS::NonnullGCPtr<Web::Geometry::DOMRect>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRectReadOnly> >::ExceptionOr(JS::NonnullGCPtr<Web::Geometry::DOMRectReadOnly>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContext::BrowsingContextAndDocument>::ExceptionOr(Web::HTML::BrowsingContext::BrowsingContextAndDocument&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument>::ExceptionOr(Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseWatcher> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::CloseWatcher>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::ExceptionOr(JS::NonnullGCPtr<JS::Promise>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ErrorEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::ErrorEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::ExceptionOr(Web::XHR::FormDataEntry&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> > >::ExceptionOr(AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> >&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::File> >::ExceptionOr(JS::NonnullGCPtr<Web::FileAPI::File>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::FormDataEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::FormDataEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::ScrollRestoration>::ExceptionOr(Web::Bindings::ScrollRestoration&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<Web::HTML::CanvasImageSourceUsability> >::ExceptionOr(AK::Optional<Web::HTML::CanvasImageSourceUsability>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::ImageData>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::CanvasImageSourceUsability>::ExceptionOr(Web::HTML::CanvasImageSourceUsability&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLDocument> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::HTMLDocument>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::PlatformObject::DidDeletionFail>::ExceptionOr(Web::Bindings::PlatformObject::DidDeletionFail&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Date> >::ExceptionOr(JS::NonnullGCPtr<JS::Date>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::ExceptionOr(JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::ExceptionOr(JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::Fetch::Fetching::PendingResponse> >::ExceptionOr(JS::GCPtr<Web::Fetch::Fetching::PendingResponse>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableRowElement> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::HTMLTableRowElement>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableCellElement> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::HTMLTableCellElement>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::MessageEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::MessageEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::NavigationParams> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::NavigationParams>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::ExceptionOr(JS::GCPtr<Web::DOM::Document>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::NavigationResult>::ExceptionOr(Web::HTML::NavigationResult&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortController> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::AbortController>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::PromiseRejectionEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::PromiseRejectionEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<URL::URL>::ExceptionOr(URL::URL&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::ExceptionOr(AK::Optional<URL::URL>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::ClassicScript>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::ImportMap>::ExceptionOr(Web::HTML::ImportMap&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::DeprecatedFlyString> >::ExceptionOr(AK::Optional<AK::DeprecatedFlyString>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::ExceptionOr(AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::ExceptionOr(AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::ExceptionOr(AK::Vector<unsigned int, 0ul>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigIntObject> >::ExceptionOr(JS::NonnullGCPtr<JS::BigIntObject>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::StringObject> >::ExceptionOr(JS::NonnullGCPtr<JS::StringObject>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::ExceptionOr(JS::NonnullGCPtr<JS::RegExpObject>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::ExceptionOr(AK::Detail::ByteBuffer<32ul>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::ExceptionOr(JS::NonnullGCPtr<JS::PrimitiveString>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::ExceptionOr(JS::NonnullGCPtr<JS::BigInt>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::ExceptionOr(Web::HTML::SerializedTransferRecord&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::ExceptionOr(Web::HTML::DeserializedTransferRecord&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedRecord>::ExceptionOr(Web::HTML::DeserializedRecord&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMPoint> >::ExceptionOr(JS::NonnullGCPtr<Web::Geometry::DOMPoint>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::ExceptionOr(JS::NonnullGCPtr<Web::Geometry::DOMMatrix>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrixReadOnly> >::ExceptionOr(JS::NonnullGCPtr<Web::Geometry::DOMMatrixReadOnly>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Geometry::ParsedMatrix>::ExceptionOr(Web::Geometry::ParsedMatrix&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::SubmitEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::SubmitEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ToggleEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::ToggleEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TrackEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::TrackEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::ExceptionOr(Web::HTML::BrowsingContextAndDocument&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::TraversableNavigable>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::WindowProxy> >::ExceptionOr(JS::GCPtr<Web::HTML::WindowProxy>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::ExceptionOr(Web::HTML::Window::OpenedWindow&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Storage> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::Storage>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::MediaQueryList> >::ExceptionOr(JS::NonnullGCPtr<Web::CSS::MediaQueryList>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::PageTransitionEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::PageTransitionEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Clipboard::Clipboard> >::ExceptionOr(JS::NonnullGCPtr<Web::Clipboard::Clipboard>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::UserActivation> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::UserActivation>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Request> >::ExceptionOr(JS::NonnullGCPtr<Web::Fetch::Request>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Headers> >::ExceptionOr(JS::NonnullGCPtr<Web::Fetch::Headers>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::String> >::ExceptionOr(AK::Optional<AK::String>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Response> >::ExceptionOr(JS::NonnullGCPtr<Web::Fetch::Response>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::EventSource> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::EventSource>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::ExceptionOr(JS::NonnullGCPtr<Web::UserTiming::PerformanceMark>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::ExceptionOr(double&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMeasure> >::ExceptionOr(JS::NonnullGCPtr<Web::UserTiming::PerformanceMeasure>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<JS::Handle<Web::PerformanceTimeline::PerformanceEntry>, 0ul> >::ExceptionOr(AK::Vector<JS::Handle<Web::PerformanceTimeline::PerformanceEntry>, 0ul>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver> >::ExceptionOr(JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserverEntry> >::ExceptionOr(JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserverEntry>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::DragEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::DragEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::PerformanceTimeline::PerformanceObserver> >::ExceptionOr(JS::NonnullGCPtr<Web::PerformanceTimeline::PerformanceObserver>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObservation> >::ExceptionOr(JS::NonnullGCPtr<Web::ResizeObserver::ResizeObservation>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserver> >::ExceptionOr(JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserver>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserverEntry> >::ExceptionOr(JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserverEntry>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::StorageAPI::StorageManager> >::ExceptionOr(JS::NonnullGCPtr<Web::StorageAPI::StorageManager>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader> >::ExceptionOr(JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >::ExceptionOr(JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::ExceptionOr(Web::Streams::ReadableStreamPair&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::ExceptionOr(JS::NonnullGCPtr<Web::Streams::ReadableStream>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::ExceptionOr(JS::NonnullGCPtr<Web::Streams::WritableStream>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStreamDefaultWriter> >::ExceptionOr(JS::NonnullGCPtr<Web::Streams::WritableStreamDefaultWriter>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader>, JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> > >::ExceptionOr(AK::Variant<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader>, JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::ExceptionOr(AK::Empty&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::TransformStream> >::ExceptionOr(JS::NonnullGCPtr<Web::Streams::TransformStream>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::CompositionEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::UIEvents::CompositionEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::FocusEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::UIEvents::FocusEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::InputEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::UIEvents::InputEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::KeyboardEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::UIEvents::KeyboardEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::MouseEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::UIEvents::MouseEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::PointerEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::UIEvents::PointerEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::UIEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::UIEvents::UIEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::WheelEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::UIEvents::WheelEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebGL::WebGLContextEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::WebGL::WebGLContextEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::ExceptionOr(JS::NonnullGCPtr<Web::XHR::FormData>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String>, 0ul> >::ExceptionOr(AK::Vector<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String>, 0ul>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::StaticRange> >::ExceptionOr(JS::NonnullGCPtr<Web::DOM::StaticRange>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParamsIterator> >::ExceptionOr(JS::NonnullGCPtr<Web::DOMURL::URLSearchParamsIterator>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextDecoder> >::ExceptionOr(JS::NonnullGCPtr<Web::Encoding::TextDecoder>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextEncoder> >::ExceptionOr(JS::NonnullGCPtr<Web::Encoding::TextEncoder>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::CanvasGradient>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::CanvasPattern> >::ExceptionOr(JS::GCPtr<Web::HTML::CanvasPattern>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Path2D> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::Path2D>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::CloseEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::DOMParser> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::DOMParser>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::MessageChannel> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::MessageChannel>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Worker> >::ExceptionOr(JS::NonnullGCPtr<Web::HTML::Worker>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::BufferedChangeEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::MediaSourceExtensions::BufferedChangeEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::ManagedMediaSource> >::ExceptionOr(JS::NonnullGCPtr<Web::MediaSourceExtensions::ManagedMediaSource>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::MediaSource> >::ExceptionOr(JS::NonnullGCPtr<Web::MediaSourceExtensions::MediaSource>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Instance> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAssembly::Instance>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Module> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAssembly::Module>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Table> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAssembly::Table>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Memory> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAssembly::Memory>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBuffer> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::AudioBuffer>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioNode> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::AudioNode>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioContext> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::AudioContext>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OfflineAudioContext> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::OfflineAudioContext>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioParam> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::AudioParam>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::BiquadFilterNode> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::BiquadFilterNode>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBufferSourceNode> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::AudioBufferSourceNode>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OscillatorNode> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::OscillatorNode>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::DynamicsCompressorNode> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::DynamicsCompressorNode>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::GainNode> >::ExceptionOr(JS::NonnullGCPtr<Web::WebAudio::GainNode>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebSockets::WebSocket> >::ExceptionOr(JS::NonnullGCPtr<Web::WebSockets::WebSocket>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTRegion> >::ExceptionOr(JS::NonnullGCPtr<Web::WebVTT::VTTRegion>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTCue> >::ExceptionOr(JS::NonnullGCPtr<Web::WebVTT::VTTCue>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::ProgressEvent> >::ExceptionOr(JS::NonnullGCPtr<Web::XHR::ProgressEvent>&&)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::XMLHttpRequest> >::ExceptionOr(JS::NonnullGCPtr<Web::XHR::XMLHttpRequest>&&)
55
56
    // Allows implicit construction of ExceptionOr<T> from a type U if T(U) is a supported constructor.
57
    // Most commonly: Value from Object* or similar, so we can omit the curly braces from "return { TRY(...) };".
58
    // Disabled for POD types to avoid weird conversion shenanigans.
59
    template<typename WrappedValueType>
60
    ExceptionOr(WrappedValueType result)
61
    requires(!IsPOD<ValueType>)
62
0
        : m_result_or_exception(ValueType { move(result) })
63
0
    {
64
0
    }
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalIdEEEC2IdEET_Qnt5IsPODIS7_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS_8Bindings24CompositeOperationOrAutoENS2_6VectorIS5_Lm0EEEEEEEC2IS7_EET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS_8Bindings24CompositeOperationOrAutoENS2_6VectorIS5_Lm0EEEEEEEC2IS5_EET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_6StringENS2_6VectorIS4_Lm0EEEEEEEC2IS6_EET_Qnt5IsPODISA_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_6StringENS2_6VectorIS4_Lm0EEEEEEEC2IS4_EET_Qnt5IsPODISA_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_8OptionalIdEENS2_6VectorIS5_Lm0EEEEEEEC2IS7_EET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_8OptionalIdEENS2_6VectorIS5_Lm0EEEEEEEC2IS5_EET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM8DocumentEEEEC2INS3_INS_4HTML12HTMLDocumentEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM7ElementEEEEC2INS3_INS_4HTML11HTMLElementEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM7ElementEEEEC2INS3_INS_3SVG10SVGElementEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM7ElementEEEEC2INS3_INS_6MathML13MathMLElementEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_3DOM4AttrEEEEC2IPS5_EET_Qnt5IsPODISA_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM4NodeEEEEC2INS3_INS4_16DocumentFragmentEEEEET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5ValueEEC2INS2_12NonnullGCPtrINS2_15PrimitiveStringEEEEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5ValueEEC2INS2_12NonnullGCPtrINS2_11ArrayBufferEEEEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5ValueEEC2INS2_12NonnullGCPtrINS2_10Uint8ArrayEEEEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJN2JS6HandleINS_7FileAPI4FileEEENS2_6StringEEEEEC2IS8_EET_Qnt5IsPODISD_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJN2JS6HandleINS_7FileAPI4FileEEENS2_6StringEEEEEC2IS9_EET_Qnt5IsPODISD_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalINS2_6VectorINS_3XHR13FormDataEntryELm0EEEEEEC2IS7_EET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalINS_4HTML26CanvasImageSourceUsabilityEEEEC2IS5_EET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML9ImageDataEEEEC2INS2_12NonnullGCPtrIS5_EEEET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS2_4DateEEEEC2INS2_12NonnullGCPtrIS4_EEEET_Qnt5IsPODISA_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS2_4DateEEEEC2IDnEET_Qnt5IsPODIS8_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_5Fetch8Fetching15PendingResponseEEEEC2INS2_12NonnullGCPtrIS6_EEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_5EmptyENS2_10StringViewEN2JS12NonnullGCPtrINS_4HTML16NavigationParamsEEENS7_INS8_30NonFetchSchemeNavigationParamsEEEEEEEC2IS4_EET_Qnt5IsPODISG_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_5EmptyENS2_10StringViewEN2JS12NonnullGCPtrINS_4HTML16NavigationParamsEEENS7_INS8_30NonFetchSchemeNavigationParamsEEEEEEEC2ISC_EET_Qnt5IsPODISG_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_5EmptyENS2_10StringViewEN2JS12NonnullGCPtrINS_4HTML16NavigationParamsEEENS7_INS8_30NonFetchSchemeNavigationParamsEEEEEEEC2IS5_EET_Qnt5IsPODISG_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_5EmptyENS2_10StringViewEN2JS12NonnullGCPtrINS_4HTML16NavigationParamsEEENS7_INS8_30NonFetchSchemeNavigationParamsEEEEEEEC2ISA_EET_Qnt5IsPODISG_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_3DOM8DocumentEEEEC2IDnEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalINS2_6StringEEEEC2IS4_EET_Qnt5IsPODIS8_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalINS2_6StringEEEEC2INS2_12OptionalNoneEEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalIN3URL3URLEEEEC2IS5_EET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalINS2_19DeprecatedFlyStringEEEEC2INS2_10ByteStringEEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalINS2_19DeprecatedFlyStringEEEEC2IS4_EET_Qnt5IsPODIS8_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML22JavaScriptModuleScriptEEEEC2INS2_12NonnullGCPtrIS5_EEEET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_4HTML11MessagePortEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5ValueEEC2INS2_12NonnullGCPtrINS2_6ObjectEEEEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_7FileAPI4BlobEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_7FileAPI4FileEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_7FileAPI8FileListEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_8Geometry17DOMMatrixReadOnlyEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_8Geometry9DOMMatrixEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_8Geometry16DOMPointReadOnlyEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_8Geometry8DOMPointEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_8Geometry15DOMRectReadOnlyEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_8Geometry7DOMRectEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_6Crypto9CryptoKeyEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Bindings14PlatformObjectEEEEC2INS3_INS_8Geometry7DOMQuadEEEEET_Qnt5IsPODISC_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML11WindowProxyEEEEC2IDnEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5ValueEEC2INS2_12NonnullGCPtrINS_7FileAPI4BlobEEEEET_Qnt5IsPODISA_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5ValueEEC2INS2_12NonnullGCPtrINS_3XHR8FormDataEEEEET_Qnt5IsPODISA_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML16DataTransferItemEEEEC2IDnEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML16DataTransferItemEEEEC2INS2_12NonnullGCPtrIS5_EEEET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_5EmptyENS2_6StringEN2JS6HandleINS6_11ArrayBufferEEEEEEEC2IS5_EET_Qnt5IsPODISD_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJNS2_5EmptyENS2_6StringEN2JS6HandleINS6_11ArrayBufferEEEEEEEC2INS6_12NonnullGCPtrIS8_EEEET_Qnt5IsPODISF_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML13CanvasPatternEEEEC2INS2_12NonnullGCPtrIS5_EEEET_Qnt5IsPODISB_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5ValueEEC2INS2_12NonnullGCPtrINS2_7PromiseEEEEET_Qnt5IsPODIS9_E
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_3DOM8DocumentEEEEC2IPS5_EET_Qnt5IsPODISA_E
65
66
    ExceptionOr(JS::NonnullGCPtr<DOMException> exception)
67
0
        : m_result_or_exception(exception)
68
0
    {
69
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::CSSStyleSheet> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document*>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::WindowProxy> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CDATASection> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Event> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document::PrefixAndTagName>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Attr> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::FontFaceSet> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Set> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Element const*>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Attr const*>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Attr> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Element> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeList> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<short>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Handle<Web::WebIDL::ArrayBufferView> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::SubjectPublicKey>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::PrivateKey>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseWatcher> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned long>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::ScrollRestoration>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<Web::HTML::CanvasImageSourceUsability> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::ImageData> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ElementInternals> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableRowElement> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableCellElement> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Geometry::ParsedMatrix>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::EventSource> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::DataTransferItem> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::SVG::SVGTransform> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Range> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::StaticRange> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::String, JS::Handle<JS::ArrayBuffer> > >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::CanvasPattern> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Worker> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Float32Array> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioNode> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioParam> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::PeriodicWave> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebSockets::WebSocket> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::ExceptionOr(JS::NonnullGCPtr<Web::WebIDL::DOMException>)
70
71
    ExceptionOr(SimpleException exception)
72
0
        : m_result_or_exception(move(exception))
73
0
    {
74
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::DOMURL> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParams> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Date> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<URL::URL>::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::ImportMap>::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrixReadOnly> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Request> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::String> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Response> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMeasure> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::TransformStream> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextDecoder> >::ExceptionOr(Web::WebIDL::SimpleException)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTCue> >::ExceptionOr(Web::WebIDL::SimpleException)
75
76
    ExceptionOr(JS::Completion exception)
77
0
        : m_result_or_exception(move(exception))
78
0
    {
79
0
        auto const& completion = m_result_or_exception.template get<JS::Completion>();
80
0
        VERIFY(completion.is_error());
81
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<Web::Bindings::CompositeOperationOrAuto, AK::Vector<Web::Bindings::CompositeOperationOrAuto, 0ul> > >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::String, AK::Vector<AK::String, 0ul> > >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Optional<double>, AK::Vector<AK::Optional<double>, 0ul> > >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::MarkedVector<JS::Object*, 0ul> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParams> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::Blob> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::File> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::StringView, JS::NonnullGCPtr<Web::HTML::NavigationParams>, JS::NonnullGCPtr<Web::HTML::NonFetchSchemeNavigationParams> > >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::String> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::ImportMap>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::DeprecatedFlyString> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrixReadOnly> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<JS::Handle<Web::PerformanceTimeline::PerformanceEntry>, 0ul> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::TransformStream> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<int>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String>, 0ul> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextDecoder> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::String, JS::Handle<JS::ArrayBuffer> > >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::CanvasPattern> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Instance> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Module> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Table> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Memory> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBuffer> >::ExceptionOr(JS::Completion)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebSockets::WebSocket> >::ExceptionOr(JS::Completion)
82
83
    ExceptionOr(Exception exception)
84
0
        : m_result_or_exception(move(exception))
85
0
    {
86
0
        if (auto* completion = m_result_or_exception.template get_pointer<JS::Completion>())
87
0
            VERIFY(completion->is_error());
88
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<int>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::Animation> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<Web::Bindings::CompositeOperationOrAuto, AK::Vector<Web::Bindings::CompositeOperationOrAuto, 0ul> > >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::String, AK::Vector<AK::String, 0ul> > >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Optional<double>, AK::Vector<AK::Optional<double>, 0ul> > >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::KeyframeEffect> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Attr> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::XMLDocument> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentType> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ShadowRoot> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Element> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortSignal> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Fetch::Infrastructure::BodyWithType>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContext::BrowsingContextAndDocument>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> > >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::ImageData> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::CanvasImageSourceUsability>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<JS::Date> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::Fetch::Fetching::PendingResponse> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableRowElement> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableCellElement> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::NavigationParams> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::StringView, JS::NonnullGCPtr<Web::HTML::NavigationParams>, JS::NonnullGCPtr<Web::HTML::NonFetchSchemeNavigationParams> > >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::NavigationResult>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortController> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<URL::URL>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::ImportMap>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Bindings::PlatformObject> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigIntObject> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::StringObject> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedRecord>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMPoint> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrixReadOnly> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::WindowProxy> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Request> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Headers> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Response> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::EventSource> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMeasure> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStreamDefaultWriter> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader>, JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> > >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::TransformStream> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::CanvasPattern> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBuffer> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OfflineAudioContext> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::BiquadFilterNode> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OscillatorNode> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::DynamicsCompressorNode> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::GainNode> >::ExceptionOr(AK::Variant<Web::WebIDL::SimpleException, JS::NonnullGCPtr<Web::WebIDL::DOMException>, JS::Completion>)
89
90
0
    ExceptionOr(ExceptionOr&& other) = default;
91
0
    ExceptionOr(ExceptionOr const& other) = default;
92
0
    ~ExceptionOr() = default;
Unexecuted instantiation: Web::WebIDL::ExceptionOr<URL::URL>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::PlatformObject::DidDeletionFail>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::KeyframeEffect> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::Animation> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<Web::Bindings::CompositeOperationOrAuto, AK::Vector<Web::Bindings::CompositeOperationOrAuto, 0ul> > >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::String, AK::Vector<AK::String, 0ul> > >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Optional<double>, AK::Vector<AK::Optional<double>, 0ul> > >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document*>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeIterator> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRectReadOnly> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserverEntry> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Set> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document::PrefixAndTagName>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRect> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortSignal> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Fetch::Infrastructure::BodyWithType>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::SubjectPublicKey>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::PrivateKey>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedRecord>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContext::BrowsingContextAndDocument>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::File> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::FormDataEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::CanvasImageSourceUsability>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<Web::HTML::CanvasImageSourceUsability> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> > >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Date> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<JS::Date> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::Fetch::Fetching::PendingResponse> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::NavigationParams> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::StringView, JS::NonnullGCPtr<Web::HTML::NavigationParams>, JS::NonnullGCPtr<Web::HTML::NonFetchSchemeNavigationParams> > >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortController> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::JavaScriptModuleScript> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::ImportMap>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::DeprecatedFlyString> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Bindings::PlatformObject> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigIntObject> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::StringObject> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Geometry::ParsedMatrix>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Request> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::WheelEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::MouseEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<short>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObservation> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStreamDefaultWriter> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Storage> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::WindowProxy> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::MediaQueryList> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::AnimationPlaybackEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::DocumentTimeline> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::MarkedVector<JS::Object*, 0ul> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Handle<Web::WebIDL::ArrayBufferView> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::AnimationEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<int>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::CSSStyleSheet> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::FontFaceSet> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Comment> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CustomEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CDATASection> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ProcessingInstruction> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Attr> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Event> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Element> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeList> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentType> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::XMLDocument> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Attr> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ShadowRoot> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Element const*>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::EventTarget> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::MutationObserver> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Attr const*>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Range> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::StaticRange> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMParsing::XMLSerializer> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::DOMURL> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParamsIterator> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParams> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextDecoder> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextEncoder> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::String> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Headers> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Response> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::Blob> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::String, JS::Handle<JS::ArrayBuffer> > >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrixReadOnly> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMPoint> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::ImageData> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::CanvasPattern> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseWatcher> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::DataTransferItem> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::DOMParser> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::DragEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ErrorEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::EventSource> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned long>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::ScrollRestoration>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ElementInternals> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableRowElement> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableCellElement> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::MessageChannel> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::MessageEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::NavigationResult>::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::PageTransitionEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Path2D> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::PromiseRejectionEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::SubmitEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ToggleEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TrackEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Worker> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMeasure> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<JS::Handle<Web::PerformanceTimeline::PerformanceEntry>, 0ul> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::BufferedChangeEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::ManagedMediaSource> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::MediaSource> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::PerformanceTimeline::PerformanceObserver> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserver> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader>, JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> > >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::TransformStream> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::SVG::SVGTransform> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Range> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::CompositionEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::FocusEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::InputEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::KeyboardEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::PointerEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::UIEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Instance> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Memory> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Module> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Table> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Float32Array> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBuffer> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBufferSourceNode> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioContext> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioNode> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioParam> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::BiquadFilterNode> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::DynamicsCompressorNode> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::GainNode> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OscillatorNode> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OfflineAudioContext> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::PeriodicWave> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebGL::WebGLContextEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebSockets::WebSocket> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTCue> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTRegion> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String>, 0ul> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::ProgressEvent> >::~ExceptionOr()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::XMLHttpRequest> >::~ExceptionOr()
93
94
    ValueType& value()
95
    requires(!IsSame<ValueType, Empty>)
96
0
    {
97
0
        return m_result_or_exception.template get<ValueType>();
98
0
    }
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN3URL3URLEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrINS_8Bindings14PlatformObject15DidDeletionFailEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS2_4DateEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS2_4DateEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrINS_4HTML26CanvasImageSourceUsabilityEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5ValueEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIsE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS2_11ArrayBufferEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML7StorageEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK6StringEE5valueEvQnt6IsSameIT_NS2_5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML11WindowProxyEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3CSS14MediaQueryListEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_10Animations9AnimationEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_10Animations22AnimationPlaybackEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_10Animations16DocumentTimelineEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12MarkedVectorIPNS2_6ObjectELm0EEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_10Animations14KeyframeEffectEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS6HandleINS0_15ArrayBufferViewEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3CSS14AnimationEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIjE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIbE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIiE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3CSS13CSSStyleSheetEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3CSS11FontFaceSetEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS2_7PromiseEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM15AbortControllerEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM11AbortSignalEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM7CommentEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM11CustomEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIPNS_3DOM8DocumentEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM7ElementEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM12CDATASectionEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM21ProcessingInstructionEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM4AttrEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM5EventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM4NodeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_3DOM7ElementEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM8NodeListEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM8DocumentEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM16DocumentFragmentEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM12DocumentTypeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM11XMLDocumentEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_3DOM4AttrEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM10ShadowRootEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIPKNS_3DOM7ElementEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM11EventTargetEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM16MutationObserverEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIPKNS_3DOM4AttrEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM5RangeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM11StaticRangeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3DOM4TextEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_10DOMParsing13XMLSerializerEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_6DOMURL6DOMURLEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_6DOMURL23URLSearchParamsIteratorEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_6DOMURL15URLSearchParamsEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Encoding11TextDecoderEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Encoding11TextEncoderEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalINS2_6StringEEEE5valueEvQnt6IsSameIT_NS2_5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_5Fetch7HeadersEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_5Fetch7RequestEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_5Fetch8ResponseEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_7FileAPI4BlobEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_7FileAPI4FileEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Geometry9DOMMatrixEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Geometry17DOMMatrixReadOnlyEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Geometry8DOMPointEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Geometry7DOMRectEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8Geometry15DOMRectReadOnlyEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML9ImageDataEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML9ImageDataEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML14CanvasGradientEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML13CanvasPatternEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML10CloseEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML12CloseWatcherEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_4HTML16DataTransferItemEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML9DOMParserEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML9DragEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML10ErrorEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML11EventSourceEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML13FormDataEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrImE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrINS_8Bindings17ScrollRestorationEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML16ElementInternalsEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML19HTMLTableRowElementEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML20HTMLTableCellElementEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML14MessageChannelEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML12MessageEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrINS_4HTML16NavigationResultEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML19PageTransitionEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML6Path2DEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML21PromiseRejectionEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML11SubmitEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML11ToggleEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML10TrackEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_4HTML6WorkerEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_10UserTiming15PerformanceMarkEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_10UserTiming18PerformanceMeasureEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK6VectorIN2JS6HandleINS_19PerformanceTimeline16PerformanceEntryEEELm0EEEE5valueEvQnt6IsSameIT_NS2_5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_20IntersectionObserver20IntersectionObserverEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_21MediaSourceExtensions19BufferedChangeEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_21MediaSourceExtensions18ManagedMediaSourceEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_21MediaSourceExtensions11MediaSourceEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_19PerformanceTimeline19PerformanceObserverEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_14ResizeObserver14ResizeObserverEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK7VariantIJN2JS12NonnullGCPtrINS_7Streams27ReadableStreamDefaultReaderEEENS5_INS6_24ReadableStreamBYOBReaderEEEEEEE5valueEvQnt6IsSameIT_NS2_5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_7Streams14ReadableStreamEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrINS_7Streams18ReadableStreamPairEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_7Streams24ReadableStreamBYOBReaderEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_7Streams27ReadableStreamDefaultReaderEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_7Streams15TransformStreamEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_7Streams27WritableStreamDefaultWriterEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_7Streams14WritableStreamEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK8OptionalIdEEE5valueEvQnt6IsSameIT_NS2_5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3SVG12SVGTransformEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_3DOM5RangeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8UIEvents16CompositionEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8UIEvents10FocusEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8UIEvents10InputEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8UIEvents13KeyboardEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8UIEvents10MouseEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8UIEvents12PointerEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8UIEvents7UIEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_11WebAssembly8InstanceEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_11WebAssembly6MemoryEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_11WebAssembly6ModuleEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_11WebAssembly5TableEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS2_12Float32ArrayEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio11AudioBufferEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio21AudioBufferSourceNodeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio12AudioContextEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio9AudioNodeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio10AudioParamEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio16BiquadFilterNodeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio22DynamicsCompressorNodeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio8GainNodeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio14OscillatorNodeEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio19OfflineAudioContextEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_8WebAudio12PeriodicWaveEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_5WebGL17WebGLContextEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_10WebSockets9WebSocketEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_6WebVTT6VTTCueEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_6WebVTT9VTTRegionEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2AK6VectorINS2_7VariantIJN2JS6HandleINS_7FileAPI4FileEEENS2_6StringEEEELm0EEEE5valueEvQnt6IsSameIT_NS2_5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3XHR8FormDataEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3XHR13ProgressEventEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS5GCPtrINS_3DOM8DocumentEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
Unexecuted instantiation: _ZN3Web6WebIDL11ExceptionOrIN2JS12NonnullGCPtrINS_3XHR14XMLHttpRequestEEEE5valueEvQnt6IsSameIT_N2AK5EmptyEE
99
100
    ValueType release_value()
101
0
    {
102
0
        return move(m_result_or_exception.template get<ValueType>());
103
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<URL::URL>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::KeyframeEffect> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::Animation> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<Web::Bindings::CompositeOperationOrAuto, AK::Vector<Web::Bindings::CompositeOperationOrAuto, 0ul> > >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::String, AK::Vector<AK::String, 0ul> > >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Optional<double>, AK::Vector<AK::Optional<double>, 0ul> > >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document*>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeIterator> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRectReadOnly> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserverEntry> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Set> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document::PrefixAndTagName>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRect> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortSignal> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Fetch::Infrastructure::BodyWithType>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::SubjectPublicKey>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::PrivateKey>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedRecord>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContext::BrowsingContextAndDocument>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::File> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::FormDataEvent> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::CanvasImageSourceUsability>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<Web::HTML::CanvasImageSourceUsability> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> > >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::Fetch::Fetching::PendingResponse> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::NavigationParams> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::StringView, JS::NonnullGCPtr<Web::HTML::NavigationParams>, JS::NonnullGCPtr<Web::HTML::NonFetchSchemeNavigationParams> > >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortController> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::JavaScriptModuleScript> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::ImportMap>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::DeprecatedFlyString> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigIntObject> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::StringObject> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Bindings::PlatformObject> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Geometry::ParsedMatrix>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Request> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::WheelEvent> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::MouseEvent> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObservation> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStreamDefaultWriter> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::String, JS::Handle<JS::ArrayBuffer> > >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Float32Array> >::release_value()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBuffer> >::release_value()
104
105
    Exception exception() const
106
0
    {
107
0
        return m_result_or_exception.template downcast<SimpleException, JS::NonnullGCPtr<DOMException>, JS::Completion>();
108
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<URL::URL>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::PlatformObject::DidDeletionFail>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::KeyframeEffect> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::Animation> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<Web::Bindings::CompositeOperationOrAuto, AK::Vector<Web::Bindings::CompositeOperationOrAuto, 0ul> > >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::String, AK::Vector<AK::String, 0ul> > >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Optional<double>, AK::Vector<AK::Optional<double>, 0ul> > >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document*>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Set> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document::PrefixAndTagName>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortSignal> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Fetch::Infrastructure::BodyWithType>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::SubjectPublicKey>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::PrivateKey>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedRecord>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContext::BrowsingContextAndDocument>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::File> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::FormDataEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::CanvasImageSourceUsability>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<Web::HTML::CanvasImageSourceUsability> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> > >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Date> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::Fetch::Fetching::PendingResponse> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::NavigationParams> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::StringView, JS::NonnullGCPtr<Web::HTML::NavigationParams>, JS::NonnullGCPtr<Web::HTML::NonFetchSchemeNavigationParams> > >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::ImportMap>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::DeprecatedFlyString> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigIntObject> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::StringObject> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Bindings::PlatformObject> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Geometry::ParsedMatrix>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Request> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Storage> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::WindowProxy> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::MediaQueryList> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::AnimationPlaybackEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::DocumentTimeline> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::MarkedVector<JS::Object*, 0ul> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Handle<Web::WebIDL::ArrayBufferView> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::AnimationEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<int>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::CSSStyleSheet> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::FontFaceSet> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortController> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Comment> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CustomEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CDATASection> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ProcessingInstruction> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Attr> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Event> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Element> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeList> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentType> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::XMLDocument> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Attr> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ShadowRoot> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Element const*>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::EventTarget> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::MutationObserver> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Attr const*>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<short>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Range> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::StaticRange> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMParsing::XMLSerializer> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::DOMURL> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParamsIterator> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParams> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextDecoder> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextEncoder> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::String> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Headers> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Response> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::Blob> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrixReadOnly> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMPoint> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRect> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRectReadOnly> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::ImageData> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::CanvasPattern> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseWatcher> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::DataTransferItem> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::DOMParser> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::DragEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ErrorEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::EventSource> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned long>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::ScrollRestoration>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ElementInternals> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableRowElement> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableCellElement> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::MessageChannel> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::MessageEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::NavigationResult>::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::PageTransitionEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Path2D> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::PromiseRejectionEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::SubmitEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ToggleEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TrackEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Worker> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMeasure> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<JS::Handle<Web::PerformanceTimeline::PerformanceEntry>, 0ul> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::BufferedChangeEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::ManagedMediaSource> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::MediaSource> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::PerformanceTimeline::PerformanceObserver> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserver> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader>, JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> > >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::TransformStream> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStreamDefaultWriter> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::SVG::SVGTransform> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Range> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::CompositionEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::FocusEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::InputEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::KeyboardEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::MouseEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::PointerEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::UIEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Instance> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Memory> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Module> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Table> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Float32Array> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBuffer> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBufferSourceNode> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioContext> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioNode> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioParam> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::BiquadFilterNode> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::DynamicsCompressorNode> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::GainNode> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OscillatorNode> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OfflineAudioContext> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::PeriodicWave> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebGL::WebGLContextEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebSockets::WebSocket> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTCue> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTRegion> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String>, 0ul> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::ProgressEvent> >::exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::XMLHttpRequest> >::exception() const
109
110
    bool is_exception() const
111
0
    {
112
0
        return !m_result_or_exception.template has<ValueType>();
113
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<URL::URL>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::PlatformObject::DidDeletionFail>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::KeyframeEffect> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::Animation> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<Web::Bindings::CompositeOperationOrAuto, AK::Vector<Web::Bindings::CompositeOperationOrAuto, 0ul> > >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::String, AK::Vector<AK::String, 0ul> > >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Optional<double>, AK::Vector<AK::Optional<double>, 0ul> > >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document*>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeIterator> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRectReadOnly> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserverEntry> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Set> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document::PrefixAndTagName>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRect> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortSignal> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Fetch::Infrastructure::BodyWithType>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::SubjectPublicKey>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::PrivateKey>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedRecord>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContext::BrowsingContextAndDocument>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::File> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::FormDataEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::CanvasImageSourceUsability>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<Web::HTML::CanvasImageSourceUsability> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> > >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Date> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<JS::Date> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::Fetch::Fetching::PendingResponse> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::NavigationParams> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::StringView, JS::NonnullGCPtr<Web::HTML::NavigationParams>, JS::NonnullGCPtr<Web::HTML::NonFetchSchemeNavigationParams> > >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortController> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::JavaScriptModuleScript> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::ImportMap>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::DeprecatedFlyString> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigIntObject> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::StringObject> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Bindings::PlatformObject> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Geometry::ParsedMatrix>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Request> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::WheelEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::MouseEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<short>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObservation> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStreamDefaultWriter> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Storage> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::WindowProxy> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::MediaQueryList> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::AnimationPlaybackEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::DocumentTimeline> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::MarkedVector<JS::Object*, 0ul> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Handle<Web::WebIDL::ArrayBufferView> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::AnimationEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<int>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::CSSStyleSheet> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::CSS::FontFaceSet> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Comment> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CustomEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::CDATASection> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ProcessingInstruction> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Attr> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Event> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Element> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeList> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentType> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::XMLDocument> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Attr> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::ShadowRoot> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Element const*>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::EventTarget> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::MutationObserver> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Attr const*>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Range> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::StaticRange> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMParsing::XMLSerializer> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::DOMURL> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParamsIterator> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOMURL::URLSearchParams> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextDecoder> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Encoding::TextEncoder> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::String> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Headers> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Response> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::Blob> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::String, JS::Handle<JS::ArrayBuffer> > >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrixReadOnly> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMPoint> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::ImageData> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::CanvasPattern> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CloseWatcher> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::DataTransferItem> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::DOMParser> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::DragEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ErrorEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::EventSource> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned long>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::ScrollRestoration>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ElementInternals> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableRowElement> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::HTMLTableCellElement> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::MessageChannel> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::MessageEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::NavigationResult>::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::PageTransitionEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Path2D> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::PromiseRejectionEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::SubmitEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ToggleEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TrackEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::Worker> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMeasure> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<JS::Handle<Web::PerformanceTimeline::PerformanceEntry>, 0ul> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::BufferedChangeEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::ManagedMediaSource> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::MediaSourceExtensions::MediaSource> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::PerformanceTimeline::PerformanceObserver> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserver> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader>, JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> > >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::TransformStream> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::SVG::SVGTransform> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Range> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::CompositionEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::FocusEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::InputEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::KeyboardEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::PointerEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::UIEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Instance> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Memory> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Module> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAssembly::Table> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Float32Array> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBuffer> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBufferSourceNode> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioContext> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioNode> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioParam> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::BiquadFilterNode> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::DynamicsCompressorNode> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::GainNode> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OscillatorNode> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::OfflineAudioContext> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::PeriodicWave> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebGL::WebGLContextEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebSockets::WebSocket> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTCue> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebVTT::VTTRegion> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String>, 0ul> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::ProgressEvent> >::is_exception() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::XMLHttpRequest> >::is_exception() const
114
115
    ValueType release_value_but_fixme_should_propagate_errors()
116
0
    {
117
0
        VERIFY(!is_error());
118
0
        return release_value();
119
0
    }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeIterator> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRectReadOnly> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserverEntry> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRect> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::JavaScriptModuleScript> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::WheelEvent> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::MouseEvent> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::release_value_but_fixme_should_propagate_errors()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::release_value_but_fixme_should_propagate_errors()
120
121
    // These are for compatibility with the TRY() macro in AK.
122
0
    [[nodiscard]] bool is_error() const { return is_exception(); }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::KeyframeEffect> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::Animation> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<Web::Bindings::CompositeOperationOrAuto, AK::Vector<Web::Bindings::CompositeOperationOrAuto, 0ul> > >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::String, AK::Vector<AK::String, 0ul> > >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Optional<double>, AK::Vector<AK::Optional<double>, 0ul> > >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document*>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::NodeIterator> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRectReadOnly> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::IntersectionObserver::IntersectionObserver> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObserverEntry> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Set> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document::PrefixAndTagName>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMRect> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortSignal> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Fetch::Infrastructure::BodyWithType>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::SubjectPublicKey>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::PrivateKey>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedRecord>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContext::BrowsingContextAndDocument>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::File> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::FormDataEvent> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::CanvasImageSourceUsability>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<Web::HTML::CanvasImageSourceUsability> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> > >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::Fetch::Fetching::PendingResponse> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::NavigationParams> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::StringView, JS::NonnullGCPtr<Web::HTML::NavigationParams>, JS::NonnullGCPtr<Web::HTML::NonFetchSchemeNavigationParams> > >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortController> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<URL::URL>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::HTML::JavaScriptModuleScript> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::DeprecatedFlyString> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigIntObject> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::StringObject> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Bindings::PlatformObject> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Geometry::ParsedMatrix>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::WheelEvent> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UIEvents::MouseEvent> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<short>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::ResizeObserver::ResizeObservation> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStreamDefaultWriter> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::WritableStream> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::String, JS::Handle<JS::ArrayBuffer> > >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::CanvasGradient> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Float32Array> >::is_error() const
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::WebAudio::AudioBuffer> >::is_error() const
123
0
    Exception release_error() { return exception(); }
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Empty>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<unsigned int>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::KeyframeEffect> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Animations::Animation> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Bindings::CompositeOperationOrAuto>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::String>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<double> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BaseKeyframe>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<Web::Bindings::CompositeOperationOrAuto, AK::Vector<Web::Bindings::CompositeOperationOrAuto, 0ul> > >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::String, AK::Vector<AK::String, 0ul> > >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Optional<double>, AK::Vector<AK::Optional<double>, 0ul> > >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Animations::BasePropertyIndexedKeyframe>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<Web::Animations::BaseKeyframe, 0ul> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Element> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Node> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document*>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::QualifiedName>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Set> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::DOM::Document::PrefixAndTagName>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::DocumentFragment> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Node> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::AbortSignal> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Text> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Fetch::Infrastructure::BodyWithType>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Detail::ByteBuffer<32ul> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamDefaultReader> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Crypto::NormalizedAlgorithmAndParameter>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::NonnullGCPtr<Web::Crypto::CryptoKey>, JS::NonnullGCPtr<Web::Crypto::CryptoKeyPair> > >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Crypto::CryptoKey> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Object> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::Value>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::UnsignedBigInteger>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::SubjectPublicKey>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<TLS::PrivateKey>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPrivateKey<Crypto::UnsignedBigInteger> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Crypto::PK::RSAPublicKey<Crypto::UnsignedBigInteger> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Vector<unsigned int, 0ul> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedRecord>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContext::BrowsingContextAndDocument>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::FileAPI::File> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<JS::Handle<Web::FileAPI::File>, AK::String> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::XHR::FormData> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::FormDataEvent> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::CanvasImageSourceUsability>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ImageData> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<Web::HTML::CanvasImageSourceUsability> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::Vector<Web::XHR::FormDataEntry, 0ul> > >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::FetchController> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Infrastructure::Body> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::Fetch::Fetching::PendingResponse> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Fetch::Fetching::PendingResponse> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Promise> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::DOM::Document> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::SerializedTransferRecord>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::DeserializedTransferRecord>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::NavigationParams> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Variant<AK::Empty, AK::StringView, JS::NonnullGCPtr<Web::HTML::NavigationParams>, JS::NonnullGCPtr<Web::HTML::NonFetchSchemeNavigationParams> > >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::GCPtr<Web::DOM::Document> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<URL::URL> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::HashMap<URL::URL, AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false>, AK::Traits<URL::URL>, AK::Traits<AK::HashMap<AK::ByteString, AK::Optional<URL::URL>, AK::Traits<AK::ByteString>, AK::Traits<AK::Optional<URL::URL> >, false> >, false> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<AK::Optional<AK::DeprecatedFlyString> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigIntObject> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::StringObject> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::RegExpObject> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::BigInt> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::PrimitiveString> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Bindings::PlatformObject> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Geometry::DOMMatrix> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Geometry::ParsedMatrix>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextGroup::BrowsingContextGroupAndDocument>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::BrowsingContextAndDocument>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::TraversableNavigable> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::HTML::Window::OpenedWindow>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<bool>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::HTML::ClassicScript> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::UserTiming::PerformanceMark> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<double>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::Streams::ReadableStreamPair>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStream> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<Web::Streams::ReadableStreamBYOBReader> >::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<Web::XHR::FormDataEntry>::release_error()
Unexecuted instantiation: Web::WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::Float32Array> >::release_error()
124
125
private:
126
    // https://webidl.spec.whatwg.org/#idl-exceptions
127
    Variant<ValueType, SimpleException, JS::NonnullGCPtr<DOMException>, JS::Completion> m_result_or_exception;
128
};
129
130
template<>
131
class [[nodiscard]] ExceptionOr<void> : public ExceptionOr<Empty> {
132
public:
133
    using ExceptionOr<Empty>::ExceptionOr;
134
};
135
136
}