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

Unified Diff: src/jsregexp.h

Issue 11397: Fixed bug 129 (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/unicode.h » ('j') | test/cctest/test-regexp.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 8c6d2714d3c6ce4f04a4604d49ba68af0e8980b3..bc55daf788e0931e47554150343b5ea0054ef375 100644
--- a/src/jsregexp.h
+++ b/src/jsregexp.h
@@ -207,8 +207,8 @@ class CharacterRange {
bool IsSingleton() { return (from_ == to_); }
void AddCaseEquivalents(ZoneList<CharacterRange>* ranges);
static const int kRangeCanonicalizeMax = 0x200;
- static const int kStartMarker = (1 << 10);
- static const int kPayloadMask = (1 << 10) - 1;
+ static const int kStartMarker = (1 << 24);
+ static const int kPayloadMask = (1 << 24) - 1;
private:
uc16 from_;
uc16 to_;
« no previous file with comments | « no previous file | src/unicode.h » ('j') | test/cctest/test-regexp.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698