| Index: src/d8-debug.cc
|
| ===================================================================
|
| --- src/d8-debug.cc (revision 5265)
|
| +++ src/d8-debug.cc (working copy)
|
| @@ -150,7 +150,7 @@
|
|
|
|
|
| void RunRemoteDebugger(int port) {
|
| - RemoteDebugger debugger(port);
|
| + RemoteDebugger debugger(i::Isolate::Current(), port);
|
| debugger.Run();
|
| }
|
|
|
| @@ -177,11 +177,11 @@
|
| }
|
|
|
| // Start the receiver thread.
|
| - ReceiverThread receiver(this);
|
| + ReceiverThread receiver(isolate_, this);
|
| receiver.Start();
|
|
|
| // Start the keyboard thread.
|
| - KeyboardThread keyboard(this);
|
| + KeyboardThread keyboard(isolate_, this);
|
| keyboard.Start();
|
| PrintPrompt();
|
|
|
|
|