aboutsummaryrefslogtreecommitdiffstats
path: root/qmljs_runtime.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-10-18 14:39:59 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2012-10-18 14:45:58 +0200
commit82ee7d361ae21001741d5e4eb42a25789b30b948 (patch)
tree453de39e9ff9ccbdf90432eee4a3356f602426df /qmljs_runtime.h
parent35fb066f83d6c792a0491e927bbc4d90eca2be36 (diff)
Optimise function calls a little.
Change-Id: I906a4f27bf47ae0ae088ae40a747b28ba827e10a Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'qmljs_runtime.h')
-rw-r--r--qmljs_runtime.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/qmljs_runtime.h b/qmljs_runtime.h
index 2e7b7d5bc9..994cdd531f 100644
--- a/qmljs_runtime.h
+++ b/qmljs_runtime.h
@@ -94,6 +94,7 @@ extern "C" {
Value __qmljs_call_activation_property(Context *, String *name, Value *args, int argc);
Value __qmljs_call_property(Context *context, Value base, String *name, Value *args, int argc);
Value __qmljs_call_value(Context *context, Value thisObject, Value func, Value *args, int argc);
+Value __qmljs_call_function(Context *context, Value thisObject, FunctionObject *f, Value *args, int argc);
Value __qmljs_construct_activation_property(Context *, String *name, Value *args, int argc);
Value __qmljs_construct_property(Context *context, Value base, String *name, Value *args, int argc);