aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/stubs/JSGlobalData.h
blob: 22b597d36e524694a59b43ebcddd5e8ea2139b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef MASM_JSGLOBALDATA_H
#define MASM_JSGLOBALDATA_H

#include "ExecutableAllocator.h"
#include "WeakRandom.h"

namespace JSC {

class JSGlobalData {
public:
    JSGlobalData(QV4::ExecutableAllocator *realAllocator)
        : executableAllocator(realAllocator)
    {}
    ExecutableAllocator executableAllocator;
};

}

#endif // MASM_JSGLOBALDATA_H