| Index: Source/bindings/v8/ScriptDebugServer.cpp
|
| diff --git a/Source/bindings/v8/ScriptDebugServer.cpp b/Source/bindings/v8/ScriptDebugServer.cpp
|
| index 779917eebfb4a09d9dfee4b9d0a52608606c3931..05e65393f7a15c8b868c6a49d1cbb92283945438 100644
|
| --- a/Source/bindings/v8/ScriptDebugServer.cpp
|
| +++ b/Source/bindings/v8/ScriptDebugServer.cpp
|
| @@ -598,7 +598,7 @@ void ScriptDebugServer::runScript(ScriptState* state, const String& scriptId, Sc
|
| return;
|
| v8::Context::Scope contextScope(context);
|
| v8::TryCatch tryCatch;
|
| - v8::Local<v8::Value> value = V8ScriptRunner::runCompiledScript(script, state->scriptExecutionContext());
|
| + v8::Local<v8::Value> value = V8ScriptRunner::runCompiledScript(script, state->scriptExecutionContext(), m_isolate);
|
| *wasThrown = false;
|
| if (tryCatch.HasCaught()) {
|
| *wasThrown = true;
|
|
|