summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-02-07 14:32:39 +0000
committerLinus Groh <mail@linusgroh.de>2022-02-07 14:32:39 +0000
commite106d5ecf4d7e110c1775b3663848cc93f84e87a (patch)
tree23a8446210cf4d27606afc45fdf458bec865f4ad /Userland
parent89c82abf1f2641c467741cc98e29c957db666501 (diff)
downloadserenity-e106d5ecf4d7e110c1775b3663848cc93f84e87a.zip
LibJS: Let Error prototypes inherit from PrototypeObject
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibJS/Runtime/ErrorPrototype.cpp29
-rw-r--r--Userland/Libraries/LibJS/Runtime/ErrorPrototype.h10
2 files changed, 16 insertions, 23 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ErrorPrototype.cpp b/Userland/Libraries/LibJS/Runtime/ErrorPrototype.cpp
index 82cd7c3710..440c85b349 100644
--- a/Userland/Libraries/LibJS/Runtime/ErrorPrototype.cpp
+++ b/Userland/Libraries/LibJS/Runtime/ErrorPrototype.cpp
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
+ * Copyright (c) 2021-2022, Linus Groh <linusg@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@@ -16,7 +16,7 @@
namespace JS {
ErrorPrototype::ErrorPrototype(GlobalObject& global_object)
- : Object(*global_object.object_prototype())
+ : PrototypeObject(*global_object.object_prototype())
{
}
@@ -37,18 +37,15 @@ void ErrorPrototype::initialize(GlobalObject& global_object)
// 20.5.3.4 Error.prototype.toString ( ), https://tc39.es/ecma262/#sec-error.prototype.tostring
JS_DEFINE_NATIVE_FUNCTION(ErrorPrototype::to_string)
{
- auto this_value = vm.this_value(global_object);
- if (!this_value.is_object())
- return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObject, this_value.to_string_without_side_effects());
- auto& this_object = this_value.as_object();
+ auto* this_object = TRY(PrototypeObject::this_object(global_object));
String name = "Error";
- auto name_property = TRY(this_object.get(vm.names.name));
+ auto name_property = TRY(this_object->get(vm.names.name));
if (!name_property.is_undefined())
name = TRY(name_property.to_string(global_object));
String message = "";
- auto message_property = TRY(this_object.get(vm.names.message));
+ auto message_property = TRY(this_object->get(vm.names.message));
if (!message_property.is_undefined())
message = TRY(message_property.to_string(global_object));
@@ -61,21 +58,15 @@ JS_DEFINE_NATIVE_FUNCTION(ErrorPrototype::to_string)
JS_DEFINE_NATIVE_FUNCTION(ErrorPrototype::stack)
{
- auto this_value = vm.this_value(global_object);
- if (!this_value.is_object())
- return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObject, this_value.to_string_without_side_effects());
- auto& this_object = this_value.as_object();
-
- if (!is<Error>(this_object))
- return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObjectOfType, "Error");
+ auto* error = TRY(typed_this_value(global_object));
String name = "Error";
- auto name_property = TRY(this_object.get(vm.names.name));
+ auto name_property = TRY(error->get(vm.names.name));
if (!name_property.is_undefined())
name = TRY(name_property.to_string(global_object));
String message = "";
- auto message_property = TRY(this_object.get(vm.names.message));
+ auto message_property = TRY(error->get(vm.names.message));
if (!message_property.is_undefined())
message = TRY(message_property.to_string(global_object));
@@ -84,12 +75,12 @@ JS_DEFINE_NATIVE_FUNCTION(ErrorPrototype::stack)
header = String::formatted("{}: {}", name, message);
return js_string(vm,
- String::formatted("{}\n{}", header, static_cast<Error&>(this_object).stack_string()));
+ String::formatted("{}\n{}", header, error->stack_string()));
}
#define __JS_ENUMERATE(ClassName, snake_name, PrototypeName, ConstructorName, ArrayType) \
PrototypeName::PrototypeName(GlobalObject& global_object) \
- : Object(*global_object.error_prototype()) \
+ : PrototypeObject(*global_object.error_prototype()) \
{ \
} \
\
diff --git a/Userland/Libraries/LibJS/Runtime/ErrorPrototype.h b/Userland/Libraries/LibJS/Runtime/ErrorPrototype.h
index dff88e777e..007e21935f 100644
--- a/Userland/Libraries/LibJS/Runtime/ErrorPrototype.h
+++ b/Userland/Libraries/LibJS/Runtime/ErrorPrototype.h
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
+ * Copyright (c) 2021-2022, Linus Groh <linusg@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@@ -7,11 +8,12 @@
#pragma once
#include <LibJS/Runtime/Error.h>
+#include <LibJS/Runtime/PrototypeObject.h>
namespace JS {
-class ErrorPrototype final : public Object {
- JS_OBJECT(ErrorPrototype, Object);
+class ErrorPrototype final : public PrototypeObject<ErrorPrototype, Error> {
+ JS_PROTOTYPE_OBJECT(ErrorPrototype, Error, Error);
public:
explicit ErrorPrototype(GlobalObject&);
@@ -24,8 +26,8 @@ private:
};
#define DECLARE_NATIVE_ERROR_PROTOTYPE(ClassName, snake_name, PrototypeName, ConstructorName) \
- class PrototypeName final : public Object { \
- JS_OBJECT(PrototypeName, Object); \
+ class PrototypeName final : public PrototypeObject<PrototypeName, ClassName> { \
+ JS_PROTOTYPE_OBJECT(PrototypeName, ClassName, ClassName); \
\
public: \
explicit PrototypeName(GlobalObject&); \