mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:47:35 +00:00
LibWeb: Make factory method of URL::URLSearchParams fallible
This commit is contained in:
parent
71316614b8
commit
35622606c1
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ class URLSearchParams : public Bindings::PlatformObject {
|
|||
WEB_PLATFORM_OBJECT(URLSearchParams, Bindings::PlatformObject);
|
||||
|
||||
public:
|
||||
static JS::NonnullGCPtr<URLSearchParams> create(JS::Realm&, Vector<QueryParam> list);
|
||||
static WebIDL::ExceptionOr<JS::NonnullGCPtr<URLSearchParams>> create(JS::Realm&, Vector<QueryParam> list);
|
||||
static WebIDL::ExceptionOr<JS::NonnullGCPtr<URLSearchParams>> construct_impl(JS::Realm&, Variant<Vector<Vector<DeprecatedString>>, OrderedHashMap<DeprecatedString, DeprecatedString>, DeprecatedString> const& init);
|
||||
|
||||
virtual ~URLSearchParams() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue