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

Unified Diff: src/unicode.cc

Issue 2720953003: [unibrow] remove mongolian vowel separator as white space. (Closed)
Patch Set: fix webkit test expectations Created 3 years, 10 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
« no previous file with comments | « src/regexp/jsregexp.cc ('k') | test/mjsunit/whitespaces.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/unicode.cc
diff --git a/src/unicode.cc b/src/unicode.cc
index 83d4a0361847847c4ada44277276190cecd820a3..654494cd8131c44d62e7aa37db103a28708c1825 100644
--- a/src/unicode.cc
+++ b/src/unicode.cc
@@ -1284,9 +1284,9 @@ bool ID_Continue::Is(uchar c) {
// WhiteSpace: (point.category == 'Zs') or ('JS_White_Space' in
// point.properties)
-static const uint16_t kWhiteSpaceTable0Size = 7;
-static const int32_t kWhiteSpaceTable0[7] = {9, 1073741835, 12, 32,
- 160, 5760, 6158}; // NOLINT
+static const uint16_t kWhiteSpaceTable0Size = 6;
+static const int32_t kWhiteSpaceTable0[6] = {9, 1073741835, 12,
+ 32, 160, 5760}; // NOLINT
static const uint16_t kWhiteSpaceTable1Size = 5;
static const int32_t kWhiteSpaceTable1[5] = {
1073741824, 10, 47, 95, 4096 }; // NOLINT
« no previous file with comments | « src/regexp/jsregexp.cc ('k') | test/mjsunit/whitespaces.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698