Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2480)

Unified Diff: src/jsregexp.h

Issue 8104: Regexp caching (Closed)
Patch Set: Created 12 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/jsregexp.h
diff --git a/src/jsregexp.h b/src/jsregexp.h
index 75d5c91d4debe25c3e512f4977e6ec864f6cd552..eca6b72ecff34f1e83d51d3c261570d5d2f25218 100644
--- a/src/jsregexp.h
+++ b/src/jsregexp.h
@@ -62,7 +62,8 @@ class RegExpImpl {
Handle<String> subject);
static Handle<Object> AtomCompile(Handle<JSRegExp> re,
- Handle<String> pattern);
+ Handle<String> pattern,
+ int flags);
static Handle<Object> AtomExec(Handle<JSRegExp> regexp,
Handle<String> subject,
@@ -73,7 +74,7 @@ class RegExpImpl {
static Handle<Object> JsreCompile(Handle<JSRegExp> re,
Handle<String> pattern,
- Handle<String> flags);
+ int flags);
static Handle<Object> JsreExec(Handle<JSRegExp> regexp,
Handle<String> subject,

Powered by Google App Engine
This is Rietveld 408576698