Index: src/isolate.cc |
diff --git a/src/isolate.cc b/src/isolate.cc |
index 2a52c6658a96800965ba0d085e493fbdaa8e0157..215e3877aafd88713587ae0f783729a9d898fb01 100644 |
--- a/src/isolate.cc |
+++ b/src/isolate.cc |
@@ -975,10 +975,11 @@ Object* Isolate::StackOverflow() { |
Handle<JSFunction> fun = range_error_function(); |
Handle<Object> msg = factory()->NewStringFromAsciiChecked( |
MessageTemplate::TemplateString(MessageTemplate::kStackOverflow)); |
+ Handle<Object> no_caller; |
Handle<Object> exception; |
ASSIGN_RETURN_FAILURE_ON_EXCEPTION( |
this, exception, |
- ErrorUtils::Construct(this, fun, fun, msg, SKIP_NONE, true)); |
+ ErrorUtils::Construct(this, fun, fun, msg, SKIP_NONE, no_caller, true)); |
Throw(*exception, nullptr); |