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

Unified Diff: src/jsregexp.h

Issue 11204: Assertion interest (Closed)
Patch Set: Created 12 years, 1 month 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') | no next file with comments »
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 42da4e5a6976c7dac59fd0ac8f1b5914952e2ae7..a5d1e2c41f83f8b8fba3b6a510e97a39e5ab93a3 100644
--- a/src/jsregexp.h
+++ b/src/jsregexp.h
@@ -438,11 +438,19 @@ class NodeInfo {
: being_analyzed(false),
been_analyzed(false),
propagate_word(false),
- propagate_line(false) { }
+ propagate_newline(false),
+ propagate_start(false),
+ follows_word_interest(false),
+ follows_newline_interest(false),
+ follows_start_interest(false) { }
bool being_analyzed: 1;
bool been_analyzed: 1;
bool propagate_word: 1;
- bool propagate_line: 1;
+ bool propagate_newline: 1;
+ bool propagate_start: 1;
+ bool follows_word_interest: 1;
+ bool follows_newline_interest: 1;
+ bool follows_start_interest: 1;
};
« no previous file with comments | « no previous file | src/jsregexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698