Index: src/d8.cc |
diff --git a/src/d8.cc b/src/d8.cc |
index 0cd965f44794b8258f7764dbee2cc0221e3e2263..825d477343df5e8ba77af9c613399cf1029c82d1 100644 |
--- a/src/d8.cc |
+++ b/src/d8.cc |
@@ -1758,9 +1758,9 @@ Handle<String> Shell::ReadFile(Isolate* isolate, const char* name) { |
void Shell::RunShell(Isolate* isolate) { |
Locker locker(isolate); |
+ HandleScope outer_scope(isolate); |
Context::Scope context_scope(isolate, evaluation_context_); |
PerIsolateData::RealmScope realm_scope(PerIsolateData::Get(isolate)); |
- HandleScope outer_scope(isolate); |
Handle<String> name = String::New("(d8)"); |
LineEditor* console = LineEditor::Get(); |
printf("V8 version %s [console: %s]\n", V8::GetVersion(), console->name()); |