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

Unified Diff: src/unicode.h

Issue 59853006: Fix y-umlaut to uppercase. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
Index: src/unicode.h
diff --git a/src/unicode.h b/src/unicode.h
index f1dcad0bcb3c8a5b8430e13ff46f6f5f44d2e62b..6ba61d0e17b2a0b6ff7702c422c38ddf9276318a 100644
--- a/src/unicode.h
+++ b/src/unicode.h
@@ -235,6 +235,7 @@ struct ConnectorPunctuation {
};
struct ToLowercase {
static const int kMaxWidth = 3;
+ static const bool kIsToLower = true;
static int Convert(uchar c,
uchar n,
uchar* result,
@@ -242,6 +243,7 @@ struct ToLowercase {
};
struct ToUppercase {
static const int kMaxWidth = 3;
+ static const bool kIsToLower = false;
static int Convert(uchar c,
uchar n,
uchar* result,
« src/runtime.cc ('K') | « src/runtime.cc ('k') | test/mjsunit/regress/regress-2984.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698