aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4jscall_p.h
diff options
context:
space:
mode:
authorAndrei Golubev <andrei.golubev@qt.io>2021-02-12 09:23:33 +0100
committerAndrei Golubev <andrei.golubev@qt.io>2021-02-12 11:59:25 +0100
commit9c282fe2e90eec05e160241069c219c7f09f4078 (patch)
tree0ed75df8be9e4802dea5b3d5a451548cfa53f6e7 /src/qml/jsruntime/qv4jscall_p.h
parent4660f51f25a6c56182dff0ea24f7c1ad2bac9cea (diff)
Transform JSCallData args setting into a function
Change-Id: I4154a0b5c7115375292794e0564d2f3657e6b4dd Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4jscall_p.h')
-rw-r--r--src/qml/jsruntime/qv4jscall_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4jscall_p.h b/src/qml/jsruntime/qv4jscall_p.h
index 31689b1ba1..ffc666d1e5 100644
--- a/src/qml/jsruntime/qv4jscall_p.h
+++ b/src/qml/jsruntime/qv4jscall_p.h
@@ -112,6 +112,8 @@ ReturnedValue FunctionObject::call(const JSCallData &data) const
return call(data.thisObject, data.args, data.argc);
}
+void populateJSCallArguments(QQmlEnginePrivate *ep, ExecutionEngine *v4, JSCallData &jsCall,
+ void **args, int *types);
struct ScopedStackFrame {
Scope &scope;