| Index: src/handles.cc
|
| ===================================================================
|
| --- src/handles.cc (revision 3836)
|
| +++ src/handles.cc (working copy)
|
| @@ -766,7 +766,8 @@
|
| 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
|
|
|