Index: Source/bindings/core/v8/ScriptDebugServer.cpp |
diff --git a/Source/bindings/core/v8/ScriptDebugServer.cpp b/Source/bindings/core/v8/ScriptDebugServer.cpp |
index 31975ce687232e89677ff3b6526d1f15f1acde6d..ab19f4a89b96c4e5e95bad37540963a0e85a50de 100644 |
--- a/Source/bindings/core/v8/ScriptDebugServer.cpp |
+++ b/Source/bindings/core/v8/ScriptDebugServer.cpp |
@@ -693,7 +693,7 @@ void ScriptDebugServer::compileScript(ScriptState* scriptState, const String& ex |
v8::Handle<v8::String> source = v8String(m_isolate, expression); |
v8::TryCatch tryCatch; |
- v8::Local<v8::Script> script = V8ScriptRunner::compileScript(source, sourceURL, TextPosition(), 0, 0, m_isolate); |
+ v8::Local<v8::Script> script = V8ScriptRunner::compileScript(source, sourceURL, TextPosition(), 0, 0, 0, m_isolate); |
if (tryCatch.HasCaught()) { |
v8::Local<v8::Message> message = tryCatch.Message(); |
if (!message.IsEmpty()) { |