summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/BooleanObject.h
blob: a99556865cf84878cb5da806e68e46a1b3ba9766 (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
/*
 * Copyright (c) 2020, Jack Karamanian <karamanian.jack@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibJS/Runtime/Object.h>

namespace JS {
class BooleanObject : public Object {
    JS_OBJECT(BooleanObject, Object);

public:
    static BooleanObject* create(GlobalObject&, bool);

    BooleanObject(bool, Object& prototype);
    virtual ~BooleanObject() override;

    virtual Value value_of() const override
    {
        return Value(m_value);
    }

private:
    bool m_value { false };
};
}