summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/ErrorConstructor.h
blob: a3a5c19cb57997558dd6eaeec2cd56987130b553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Copyright (c) 2020-2021, Linus Groh <linusg@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibJS/Runtime/Error.h>
#include <LibJS/Runtime/NativeFunction.h>

namespace JS {

class ErrorConstructor final : public NativeFunction {
    JS_OBJECT(ErrorConstructor, NativeFunction);

public:
    explicit ErrorConstructor(GlobalObject&);
    virtual void initialize(GlobalObject&) override;
    virtual ~ErrorConstructor() override = default;

    virtual Value call() override;
    virtual Value construct(Function& new_target) override;

private:
    virtual bool has_constructor() const override { return true; }
};

#define DECLARE_ERROR_SUBCLASS_CONSTRUCTOR(ClassName, snake_name, PrototypeName, ConstructorName) \
    class ConstructorName final : public NativeFunction {                                         \
        JS_OBJECT(ConstructorName, NativeFunction);                                               \
                                                                                                  \
    public:                                                                                       \
        explicit ConstructorName(GlobalObject&);                                                  \
        virtual void initialize(GlobalObject&) override;                                          \
        virtual ~ConstructorName() override;                                                      \
        virtual Value call() override;                                                            \
        virtual Value construct(Function& new_target) override;                                   \
                                                                                                  \
    private:                                                                                      \
        virtual bool has_constructor() const override { return true; }                            \
    };

#define __JS_ENUMERATE(ClassName, snake_name, PrototypeName, ConstructorName, ArrayType) \
    DECLARE_ERROR_SUBCLASS_CONSTRUCTOR(ClassName, snake_name, PrototypeName, ConstructorName)
JS_ENUMERATE_ERROR_SUBCLASSES
#undef __JS_ENUMERATE

}