Index: Source/bindings/core/v8/ScriptDebugServer.cpp |
diff --git a/Source/bindings/core/v8/ScriptDebugServer.cpp b/Source/bindings/core/v8/ScriptDebugServer.cpp |
index ad46ff8219d92f276402d1e171aee7cf132d086a..6c4d14c98d1b07e5356f2839095c2ca4eb88e163 100644 |
--- a/Source/bindings/core/v8/ScriptDebugServer.cpp |
+++ b/Source/bindings/core/v8/ScriptDebugServer.cpp |
@@ -618,7 +618,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, m_isolate); |
+ v8::Local<v8::Script> script = V8ScriptRunner::compileScript(source, sourceURL, TextPosition(), 0, 0, m_isolate); |
if (tryCatch.HasCaught()) { |
v8::Local<v8::Message> message = tryCatch.Message(); |
if (!message.IsEmpty()) { |