Index: src/regexp/jsregexp.h |
diff --git a/src/regexp/jsregexp.h b/src/regexp/jsregexp.h |
index d26feeb36303ef89c72b2e5aef10fdcec18a6b70..1d152dcfb2536e1a7c5f65a33d5b468787fea8d1 100644 |
--- a/src/regexp/jsregexp.h |
+++ b/src/regexp/jsregexp.h |
@@ -122,7 +122,6 @@ class RegExpImpl { |
public: |
GlobalCache(Handle<JSRegExp> regexp, |
Handle<String> subject, |
- bool is_global, |
Isolate* isolate); |
INLINE(~GlobalCache()); |
@@ -138,6 +137,8 @@ class RegExpImpl { |
INLINE(bool HasException()) { return num_matches_ < 0; } |
private: |
+ int AdvanceZeroLength(int last_index); |
+ |
int num_matches_; |
int max_matches_; |
int current_match_index_; |