summaryrefslogtreecommitdiff
path: root/deps/v8/src/debug.cc
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-03-17 15:52:57 -0700
committerRyan Dahl <ry@tinyclouds.org>2010-03-17 15:52:57 -0700
commit2d7e86ef58ee341e323c65193115c2ad7385f131 (patch)
tree50971a9e4333ebd99b83512b602614695cc5dce7 /deps/v8/src/debug.cc
parent8aaffe71eebd3dbf4e8713c79aea6b4413396f9e (diff)
downloadnode-2d7e86ef58ee341e323c65193115c2ad7385f131.tar.gz
Upgrade V8 to 2.1.5
Diffstat (limited to 'deps/v8/src/debug.cc')
-rw-r--r--deps/v8/src/debug.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/deps/v8/src/debug.cc b/deps/v8/src/debug.cc
index 81752e64e..2a7a9c829 100644
--- a/deps/v8/src/debug.cc
+++ b/deps/v8/src/debug.cc
@@ -686,8 +686,14 @@ bool Debug::CompileDebuggerScript(int index) {
bool allow_natives_syntax = FLAG_allow_natives_syntax;
FLAG_allow_natives_syntax = true;
Handle<JSFunction> boilerplate;
- boilerplate = Compiler::Compile(source_code, script_name, 0, 0, NULL, NULL,
- Handle<String>::null());
+ boilerplate = Compiler::Compile(source_code,
+ script_name,
+ 0,
+ 0,
+ NULL,
+ NULL,
+ Handle<String>::null(),
+ NATIVES_CODE);
FLAG_allow_natives_syntax = allow_natives_syntax;
// Silently ignore stack overflows during compilation.