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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
// Copyright (C) 2023 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
#define QT_QML_BUILD_REMOVED_API
#include "qtqmlglobal.h"
QT_USE_NAMESPACE
#if QT_QML_REMOVED_SINCE(6, 5)
#include <QtQml/qjsengine.h>
QJSValue QJSEngine::create(int typeId, const void *ptr)
{
QMetaType type(typeId);
return create(type, ptr);
}
bool QJSEngine::convertV2(const QJSValue &value, int type, void *ptr)
{
return convertV2(value, QMetaType(type), ptr);
}
#endif
#if QT_QML_REMOVED_SINCE(6, 6)
#include <QtQml/qqmlprivate.h>
#include <QtQml/private/qv4executablecompilationunit_p.h>
#include <QtQml/private/qv4lookup_p.h>
bool QQmlPrivate::AOTCompiledContext::getEnumLookup(uint index, int *target) const
{
using namespace QQmlPrivate;
QV4::Lookup *l = compilationUnit->runtimeLookups + index;
auto mt = QMetaType(l->qmlEnumValueLookup.metaType);
QVariant buffer(mt);
getEnumLookup(index, buffer.data());
*target = buffer.toInt();
return true;
}
#endif
#if QT_QML_REMOVED_SINCE(6, 9)
#include <QtQml/qqmlprivate.h>
#include <QtQml/private/qv4executablecompilationunit_p.h>
#include <QtQml/private/qv4lookup_p.h>
#include <QtQml/private/qv4qobjectwrapper_p.h>
bool QQmlPrivate::AOTCompiledContext::callObjectPropertyLookup(
uint index, QObject *object, void **args, const QMetaType *types, int argc) const
{
QV4::Lookup *l = compilationUnit->runtimeLookups + index;
QV4::Scope scope(engine->handle());
QV4::ScopedValue thisObject(scope, QV4::QObjectWrapper::wrap(scope.engine, object));
QV4::ScopedFunctionObject function(scope, l->getter(l, engine->handle(), thisObject));
if (!function) {
scope.engine->throwTypeError(
QStringLiteral("Property '%1' of object [object Object] is not a function")
.arg(compilationUnit->runtimeStrings[l->nameIndex]->toQString()));
return false;
}
function->call(object, args, types, argc);
return !scope.hasException();
}
void QQmlPrivate::AOTCompiledContext::initCallObjectPropertyLookup(uint index) const
{
Q_UNUSED(index);
Q_ASSERT(engine->hasError());
engine->handle()->amendException();
}
bool QQmlPrivate::AOTCompiledContext::callQmlContextPropertyLookup(
uint index, void **args, const QMetaType *types, int argc) const
{
QV4::Lookup *l = compilationUnit->runtimeLookups + index;
QV4::Scope scope(engine->handle());
QV4::ScopedValue thisObject(scope);
QV4::ScopedFunctionObject function(
scope, l->qmlContextPropertyGetter(l, scope.engine, thisObject));
if (!function) {
scope.engine->throwTypeError(
QStringLiteral("Property '%1' of object [null] is not a function").arg(
compilationUnit->runtimeStrings[l->nameIndex]->toQString()));
return false;
}
function->call(qmlScopeObject, args, types, argc);
return !scope.hasException();
}
void QQmlPrivate::AOTCompiledContext::initCallQmlContextPropertyLookup(uint index) const
{
Q_UNUSED(index);
Q_ASSERT(engine->hasError());
engine->handle()->amendException();
}
#endif
|