diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-03-17 15:52:57 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-03-17 15:52:57 -0700 |
commit | 2d7e86ef58ee341e323c65193115c2ad7385f131 (patch) | |
tree | 50971a9e4333ebd99b83512b602614695cc5dce7 /deps/v8/src/handles.cc | |
parent | 8aaffe71eebd3dbf4e8713c79aea6b4413396f9e (diff) | |
download | node-new-2d7e86ef58ee341e323c65193115c2ad7385f131.tar.gz |
Upgrade V8 to 2.1.5
Diffstat (limited to 'deps/v8/src/handles.cc')
-rw-r--r-- | deps/v8/src/handles.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/handles.cc b/deps/v8/src/handles.cc index c71d92bb15..53c16a4999 100644 --- a/deps/v8/src/handles.cc +++ b/deps/v8/src/handles.cc @@ -780,7 +780,7 @@ void LoadLazy(Handle<JSObject> obj, bool* pending_exception) { bool allow_natives_syntax = FLAG_allow_natives_syntax; FLAG_allow_natives_syntax = true; boilerplate = Compiler::Compile(source_code, script_name, 0, 0, NULL, NULL, - Handle<String>::null()); + Handle<String>::null(), NATIVES_CODE); 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 |