summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/ErrorConstructor.h
blob: 4226c6107f3ac9057ee36e1f0d7c415665d956fb (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 ThrowCompletionOr<Value> call() override;
    virtual ThrowCompletionOr<Object*> construct(FunctionObject& new_target) override;

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

#define DECLARE_NATIVE_ERROR_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 ThrowCompletionOr<Value> call() override;                                       \
        virtual ThrowCompletionOr<Object*> construct(FunctionObject& new_target) override;      \
                                                                                                \
    private:                                                                                    \
        virtual bool has_constructor() const override { return true; }                          \
    };

#define __JS_ENUMERATE(ClassName, snake_name, PrototypeName, ConstructorName, ArrayType) \
    DECLARE_NATIVE_ERROR_CONSTRUCTOR(ClassName, snake_name, PrototypeName, ConstructorName)
JS_ENUMERATE_NATIVE_ERRORS
#undef __JS_ENUMERATE

}