| Index: src/d8-debug.cc
|
| ===================================================================
|
| --- src/d8-debug.cc (revision 7267)
|
| +++ src/d8-debug.cc (working copy)
|
| @@ -159,7 +159,7 @@
|
|
|
|
|
| void RunRemoteDebugger(int port) {
|
| - RemoteDebugger debugger(port);
|
| + RemoteDebugger debugger(i::Isolate::Current(), port);
|
| debugger.Run();
|
| }
|
|
|
| @@ -186,11 +186,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();
|
|
|
|
|