diff options
author | Linus Groh <mail@linusgroh.de> | 2021-09-29 00:02:05 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-09-29 23:49:53 +0100 |
commit | 9b4362f10a5a87470f43c1086717daa9ce04bb08 (patch) | |
tree | ed3c084dc916a6960092a29f4f54feb6c9d6845d /Userland/Services/WebContent/ConsoleGlobalObject.cpp | |
parent | 8c81c84c1815d11e3ddbb1ca54a35b1e80cd617d (diff) | |
download | serenity-9b4362f10a5a87470f43c1086717daa9ce04bb08.zip |
LibJS: Convert internal_is_extensible() to ThrowCompletionOr
Diffstat (limited to 'Userland/Services/WebContent/ConsoleGlobalObject.cpp')
-rw-r--r-- | Userland/Services/WebContent/ConsoleGlobalObject.cpp | 2 |
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(); } |