aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/execution.h
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-10-18 17:13:30 -0700
committerRyan Dahl <ry@tinyclouds.org>2010-10-18 17:13:30 -0700
commit1b2f6f9e29bf7137e177b8d9b600fe558d36f512 (patch)
treec67553632967b08349b9b5e83a897d189dafd8f2 /deps/v8/src/execution.h
parent5d400cfd3a2a9faf27a88bf82f33a57f78fa65af (diff)
downloadandroid-node-v8-1b2f6f9e29bf7137e177b8d9b600fe558d36f512.tar.gz
android-node-v8-1b2f6f9e29bf7137e177b8d9b600fe558d36f512.tar.bz2
android-node-v8-1b2f6f9e29bf7137e177b8d9b600fe558d36f512.zip
Upgrade V8 to 2.5.0
Diffstat (limited to 'deps/v8/src/execution.h')
-rw-r--r--deps/v8/src/execution.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/deps/v8/src/execution.h b/deps/v8/src/execution.h
index 282350332a..15d85ef40d 100644
--- a/deps/v8/src/execution.h
+++ b/deps/v8/src/execution.h
@@ -105,6 +105,11 @@ class Execution : public AllStatic {
// Create a new date object from 'time'.
static Handle<Object> NewDate(double time, bool* exc);
+ // Create a new regular expression object from 'pattern' and 'flags'.
+ static Handle<JSRegExp> NewJSRegExp(Handle<String> pattern,
+ Handle<String> flags,
+ bool* exc);
+
// Used to implement [] notation on strings (calls JS code)
static Handle<Object> CharAt(Handle<String> str, uint32_t index);