Index: src/isolate.cc |
diff --git a/src/isolate.cc b/src/isolate.cc |
index ceb8809e8db6156d37423fc91b9c64376bf62e43..6fa496a9026dd810892309ff63d2483394535b18 100644 |
--- a/src/isolate.cc |
+++ b/src/isolate.cc |
@@ -1087,7 +1087,7 @@ Failure* Isolate::StackOverflow() { |
Handle<String> key = factory()->stack_overflow_string(); |
Handle<JSObject> boilerplate = |
Handle<JSObject>::cast(GetProperty(this, js_builtins_object(), key)); |
- Handle<JSObject> exception = JSObject::Copy(boilerplate); |
+ Handle<JSObject> exception = Copy(boilerplate); |
DoThrow(*exception, NULL); |
// Get stack trace limit. |