Index: src/handles.cc |
diff --git a/src/handles.cc b/src/handles.cc |
index ad366c3761d25b39a0d2b60baa5676e8bcae5fed..971c9164a26b76fb15196c32aab58738185617c8 100644 |
--- a/src/handles.cc |
+++ b/src/handles.cc |
@@ -770,7 +770,8 @@ void LoadLazy(Handle<JSObject> obj, bool* pending_exception) { |
Handle<String> script_name = Factory::NewStringFromAscii(name); |
bool allow_natives_syntax = FLAG_allow_natives_syntax; |
FLAG_allow_natives_syntax = true; |
- boilerplate = Compiler::Compile(source_code, script_name, 0, 0, NULL, NULL); |
+ boilerplate = Compiler::Compile(source_code, script_name, 0, 0, NULL, NULL, |
+ Handle<String>::null()); |
FLAG_allow_natives_syntax = allow_natives_syntax; |
// If the compilation failed (possibly due to stack overflows), we |
// should never enter the result in the natives cache. Instead we |