LibJS: Fix AggregateError's class_name()

This commit is contained in:
Linus Groh 2021-06-23 13:55:43 +01:00
commit 0e8cbfb7b5
Notes: sideshowbarker 2024-07-18 11:37:37 +09:00

View file

@ -11,7 +11,7 @@
namespace JS {
class AggregateError : public Object {
JS_OBJECT(Error, Object);
JS_OBJECT(AggregateError, Object);
public:
static AggregateError* create(GlobalObject&);