From 9b4362f10a5a87470f43c1086717daa9ce04bb08 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 29 Sep 2021 00:02:05 +0100 Subject: LibJS: Convert internal_is_extensible() to ThrowCompletionOr --- Userland/Services/WebContent/ConsoleGlobalObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Services/WebContent/ConsoleGlobalObject.cpp') diff --git a/Userland/Services/WebContent/ConsoleGlobalObject.cpp b/Userland/Services/WebContent/ConsoleGlobalObject.cpp index 2b5a61b6c5..9b9ae85335 100644 --- a/Userland/Services/WebContent/ConsoleGlobalObject.cpp +++ b/Userland/Services/WebContent/ConsoleGlobalObject.cpp @@ -47,7 +47,7 @@ JS::ThrowCompletionOr ConsoleGlobalObject::internal_set_prototype_of(JS::O return m_window_object->internal_set_prototype_of(prototype); } -bool ConsoleGlobalObject::internal_is_extensible() const +JS::ThrowCompletionOr ConsoleGlobalObject::internal_is_extensible() const { return m_window_object->internal_is_extensible(); } -- cgit v1.2.3