Index: Source/bindings/core/v8/ScriptDebugServer.cpp |
diff --git a/Source/bindings/core/v8/ScriptDebugServer.cpp b/Source/bindings/core/v8/ScriptDebugServer.cpp |
index 7bb0df00545ecfd57134fd363630e49e8258592e..08d6f9ffa4f5e36aad9bed9eeb2bdb333a427b52 100644 |
--- a/Source/bindings/core/v8/ScriptDebugServer.cpp |
+++ b/Source/bindings/core/v8/ScriptDebugServer.cpp |
@@ -648,7 +648,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()) { |