summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/ConsoleGlobalObject.cpp
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-09-29 00:02:05 +0100
committerLinus Groh <mail@linusgroh.de>2021-09-29 23:49:53 +0100
commit9b4362f10a5a87470f43c1086717daa9ce04bb08 (patch)
treeed3c084dc916a6960092a29f4f54feb6c9d6845d /Userland/Services/WebContent/ConsoleGlobalObject.cpp
parent8c81c84c1815d11e3ddbb1ca54a35b1e80cd617d (diff)
downloadserenity-9b4362f10a5a87470f43c1086717daa9ce04bb08.zip
LibJS: Convert internal_is_extensible() to ThrowCompletionOr
Diffstat (limited to 'Userland/Services/WebContent/ConsoleGlobalObject.cpp')
-rw-r--r--Userland/Services/WebContent/ConsoleGlobalObject.cpp2
1 files changed, 1 insertions, 1 deletions
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<bool> ConsoleGlobalObject::internal_set_prototype_of(JS::O
return m_window_object->internal_set_prototype_of(prototype);
}
-bool ConsoleGlobalObject::internal_is_extensible() const
+JS::ThrowCompletionOr<bool> ConsoleGlobalObject::internal_is_extensible() const
{
return m_window_object->internal_is_extensible();
}