1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | #ifndef MASM_JSGLOBALDATA_H |
4 | #define MASM_JSGLOBALDATA_H |
5 | |
6 | #include "ExecutableAllocator.h" |
7 | #include "WeakRandom.h" |
8 | |
9 | namespace JSC { |
10 | |
11 | class JSGlobalData { |
12 | public: |
13 | JSGlobalData(QV4::ExecutableAllocator *realAllocator) |
14 | : executableAllocator(realAllocator) |
15 | {} |
16 | ExecutableAllocator executableAllocator; |
17 | }; |
18 | |
19 | } |
20 | |
21 | #endif // MASM_JSGLOBALDATA_H |
22 |