| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index 9bffca25a2ddedf955f3cb4e4642a0b4487504bd..7a66bb58f040af4fb5b2aaa512423301e88350bc 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -1307,12 +1307,12 @@ void Isolate::SetCaptureStackTraceForUncaughtExceptions(
|
|
|
|
|
| Handle<Context> Isolate::native_context() {
|
| - return Handle<Context>(context()->global_object()->native_context());
|
| + return handle(context()->native_context());
|
| }
|
|
|
|
|
| Handle<Context> Isolate::global_context() {
|
| - return Handle<Context>(context()->global_object()->global_context());
|
| + return handle(context()->global_object()->global_context());
|
| }
|
|
|
|
|
|
|