Index: src/debug.cc |
diff --git a/src/debug.cc b/src/debug.cc |
index 0cd20ad5b134c9a3c2db796efebeb45d9fd23e7d..c218f70d0d5a846ca468ab27971ceec4afb436ba 100644 |
--- a/src/debug.cc |
+++ b/src/debug.cc |
@@ -637,8 +637,8 @@ bool Debug::CompileDebuggerScript(Isolate* isolate, int index) { |
// Compile the script. |
Handle<SharedFunctionInfo> function_info; |
function_info = Compiler::CompileScript( |
- source_code, script_name, 0, 0, false, false, context, NULL, NULL, |
- ScriptCompiler::kNoCompileOptions, NATIVES_CODE, false); |
+ source_code, script_name, 0, 0, false, false, Handle<Object>(), context, |
+ NULL, NULL, ScriptCompiler::kNoCompileOptions, NATIVES_CODE, false); |
// Silently ignore stack overflows during compilation. |
if (function_info.is_null()) { |