summaryrefslogtreecommitdiff
path: root/deps/v8/src/execution.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/execution.h')
-rw-r--r--deps/v8/src/execution.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/deps/v8/src/execution.h b/deps/v8/src/execution.h
index 52c76280eb..6f4bb331a3 100644
--- a/deps/v8/src/execution.h
+++ b/deps/v8/src/execution.h
@@ -21,11 +21,9 @@ class Execution final : public AllStatic {
// When the function called is not in strict mode, receiver is
// converted to an object.
//
- MUST_USE_RESULT static MaybeHandle<Object> Call(Isolate* isolate,
- Handle<Object> callable,
- Handle<Object> receiver,
- int argc,
- Handle<Object> argv[]);
+ V8_EXPORT_PRIVATE MUST_USE_RESULT static MaybeHandle<Object> Call(
+ Isolate* isolate, Handle<Object> callable, Handle<Object> receiver,
+ int argc, Handle<Object> argv[]);
// Construct object from function, the caller supplies an array of
// arguments.
@@ -48,11 +46,6 @@ class Execution final : public AllStatic {
Handle<Object> receiver, int argc,
Handle<Object> argv[],
MaybeHandle<Object>* exception_out = NULL);
-
- static Handle<String> GetStackTraceLine(Handle<Object> recv,
- Handle<JSFunction> fun,
- Handle<Object> pos,
- Handle<Object> is_global);
};