| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index 37d253b317c1e1232eae4d90155c19749d85e7bb..95c0f5a991e5cff2a441ac0c6a168006485dc8ec 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -1089,7 +1089,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 = Copy(boilerplate);
|
| + Handle<JSObject> exception = JSObject::Copy(boilerplate);
|
| DoThrow(*exception, NULL);
|
|
|
| // Get stack trace limit.
|
|
|