| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 142d28ec0f191c53be61ed1e23d1fdfe46d968f7..c4be0b477b188c2e41679dbbb7ab9a49fc898853 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -2991,8 +2991,7 @@ bool Bootstrapper::CompileNative(Isolate* isolate, Vector<const char> name,
|
| Handle<SharedFunctionInfo> function_info =
|
| Compiler::GetSharedFunctionInfoForScript(
|
| source, script_name, 0, 0, ScriptOriginOptions(), Handle<Object>(),
|
| - context, NULL, NULL, ScriptCompiler::kNoCompileOptions, natives_flag,
|
| - false);
|
| + context, NULL, NULL, ScriptCompiler::kNoCompileOptions, natives_flag);
|
| if (function_info.is_null()) return false;
|
|
|
| DCHECK(context->IsNativeContext());
|
| @@ -3055,7 +3054,7 @@ bool Genesis::CompileExtension(Isolate* isolate, v8::Extension* extension) {
|
| function_info = Compiler::GetSharedFunctionInfoForScript(
|
| source, script_name, 0, 0, ScriptOriginOptions(), Handle<Object>(),
|
| context, extension, NULL, ScriptCompiler::kNoCompileOptions,
|
| - EXTENSION_CODE, false);
|
| + EXTENSION_CODE);
|
| if (function_info.is_null()) return false;
|
| cache->Add(name, function_info);
|
| }
|
|
|