summaryrefslogtreecommitdiff
path: root/src/3rdparty/v8/src/execution.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/v8/src/execution.h')
-rw-r--r--src/3rdparty/v8/src/execution.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/3rdparty/v8/src/execution.h b/src/3rdparty/v8/src/execution.h
index 9f5d9ff..90219f5 100644
--- a/src/3rdparty/v8/src/execution.h
+++ b/src/3rdparty/v8/src/execution.h
@@ -70,6 +70,14 @@ class Execution : public AllStatic {
bool* pending_exception,
bool convert_receiver = false);
+ static Handle<Object> Call(Handle<Object> callable,
+ Handle<Object> receiver,
+ int argc,
+ Handle<Object> argv[],
+ bool* pending_exception,
+ bool convert_receiver,
+ Handle<Object> qml);
+
// Construct object from function, the caller supplies an array of
// arguments. Arguments are Object* type. After function returns,
// pointers in 'args' might be invalid.