| Index: src/debug.cc
|
| diff --git a/src/debug.cc b/src/debug.cc
|
| index 9d1f2affe5d832ccdc2ba7332494016a9c96a3ca..f6908a53047353f2cff7d832a09376ea6d984ab9 100644
|
| --- a/src/debug.cc
|
| +++ b/src/debug.cc
|
| @@ -738,12 +738,9 @@ 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,
|
| - context,
|
| - NULL, NULL, NO_CACHED_DATA,
|
| - NATIVES_CODE);
|
| + function_info = Compiler::CompileScript(
|
| + source_code, script_name, 0, 0, false, context, NULL, NULL,
|
| + ScriptCompiler::kNoCompileOptions, NATIVES_CODE);
|
|
|
| // Silently ignore stack overflows during compilation.
|
| if (function_info.is_null()) {
|
|
|