Index: Source/bindings/core/v8/ScriptDebugServer.cpp |
diff --git a/Source/bindings/core/v8/ScriptDebugServer.cpp b/Source/bindings/core/v8/ScriptDebugServer.cpp |
index 410a2e79a5cdcef9b90a7c626bd0e76faf684128..cc1215f3d8b5eaf6c15cc845ba1c7f4193ce8a3b 100644 |
--- a/Source/bindings/core/v8/ScriptDebugServer.cpp |
+++ b/Source/bindings/core/v8/ScriptDebugServer.cpp |
@@ -697,7 +697,7 @@ void ScriptDebugServer::runScript(ScriptState* scriptState, const String& script |
return; |
ScriptState::Scope scope(scriptState); |
v8::TryCatch tryCatch; |
- v8::Local<v8::Value> value = V8ScriptRunner::runCompiledScript(script, scriptState->executionContext(), m_isolate); |
+ v8::Local<v8::Value> value = V8ScriptRunner::runCompiledScript(m_isolate, script, scriptState->executionContext()); |
*wasThrown = false; |
if (tryCatch.HasCaught()) { |
*wasThrown = true; |