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

Unified Diff: src/jsregexp.h

Issue 13784: * Fixed bug in handling of quantified look-aheads. (Closed)
Patch Set: Created 12 years 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
« no previous file with comments | « no previous file | src/jsregexp.cc » ('j') | src/parser.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/jsregexp.h
diff --git a/src/jsregexp.h b/src/jsregexp.h
index dbeb6e23ebedbef5be48e47bddc766d1b1b9fdb3..e99a3ce0a1ec5fa3ab080a30846d788b322002da 100644
--- a/src/jsregexp.h
+++ b/src/jsregexp.h
@@ -1117,12 +1117,12 @@ struct RegExpCompileData {
: tree(NULL),
node(NULL),
has_lookbehind(false),
- has_character_escapes(false),
+ non_simple(false),
capture_count(0) { }
RegExpTree* tree;
RegExpNode* node;
bool has_lookbehind;
- bool has_character_escapes;
+ bool non_simple;
Handle<String> error;
int capture_count;
};
« no previous file with comments | « no previous file | src/jsregexp.cc » ('j') | src/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698