| Index: Source/bindings/core/v8/ScriptDebugServer.cpp
|
| diff --git a/Source/bindings/core/v8/ScriptDebugServer.cpp b/Source/bindings/core/v8/ScriptDebugServer.cpp
|
| index a514532d96dc7c31546f9ce7dc31c539e81e58c4..9b224f7b4fb2f79a9ffbc24e64a7651f6b995d8b 100644
|
| --- a/Source/bindings/core/v8/ScriptDebugServer.cpp
|
| +++ b/Source/bindings/core/v8/ScriptDebugServer.cpp
|
| @@ -691,7 +691,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(), m_isolate);
|
| if (tryCatch.HasCaught()) {
|
| v8::Local<v8::Message> message = tryCatch.Message();
|
| if (!message.IsEmpty()) {
|
|
|