summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/ErrorConstructor.h
blob: 98d3bea32da9836c92f181cda8c34c49b220dede (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
50
51
52
53
54
/*
 * 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:
    virtual void initialize(Realm&) override;
    virtual ~ErrorConstructor() override = default;

    virtual ThrowCompletionOr<Value> call() override;
    virtual ThrowCompletionOr<Object*> construct(FunctionObject& new_target) override;

private:
    explicit ErrorConstructor(Realm&);

    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:                                                                                     \
        virtual void initialize(Realm&) override;                                               \
        virtual ~ConstructorName() override;                                                    \
        virtual ThrowCompletionOr<Value> call() override;                                       \
        virtual ThrowCompletionOr<Object*> construct(FunctionObject& new_target) override;      \
                                                                                                \
    private:                                                                                    \
        explicit ConstructorName(Realm&);                                                       \
                                                                                                \
        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

}