Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qqmlirloader_p.h
Go to the documentation of this file.
1// Copyright (C) 2019 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// Qt-Security score:significant
4
5#ifndef QQMLIRLOADER_P_H
6#define QQMLIRLOADER_P_H
7
8//
9// W A R N I N G
10// -------------
11//
12// This file is not part of the Qt API. It exists purely as an
13// implementation detail. This header file may change from version to
14// version without notice, or even be removed.
15//
16// We mean it.
17//
18
19#include <private/qtqmlglobal_p.h>
20#include <private/qv4compileddata_p.h>
21#include <private/qqmljsmemorypool_p.h>
22
23QT_BEGIN_NAMESPACE
24
25namespace QmlIR {
26struct Document;
27struct Object;
28}
29
30struct Q_QML_EXPORT QQmlIRLoader {
31 QQmlIRLoader(const QV4::CompiledData::Unit *unit, QmlIR::Document *output);
32
33 void load();
34
35private:
36 QmlIR::Object *loadObject(const QV4::CompiledData::Object *serializedObject);
37
38 template <typename _Tp> _Tp *New() { return pool->New<_Tp>(); }
39
40 const QV4::CompiledData::Unit *unit;
41 QmlIR::Document *output;
43};
44
45QT_END_NAMESPACE
46
47#endif // QQMLIRLOADER_P_H
Combined button and popup list for selecting options.
QThreadPool pool
[8]
QQmlJS::SourceLocation firstSourceLocation() const override
QQmlJS::SourceLocation lastSourceLocation() const override
FakeExpression(int start, int length)