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

Unified Diff: src/unicode.h

Issue 2331303002: Use ICU for ID_START and ID_CONTINUE for Unicode 9 data (Closed)
Patch Set: drop an unnecessary todo Created 3 years, 6 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/char-predicates.cc ('k') | src/unicode.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/unicode.h
diff --git a/src/unicode.h b/src/unicode.h
index 9aece253fe41089782fe81c6831e052af215d37c..23a044c9f98bf1e63678615a1099776a8c536f67 100644
--- a/src/unicode.h
+++ b/src/unicode.h
@@ -180,12 +180,10 @@ class Utf8 {
struct Uppercase {
static bool Is(uchar c);
};
-struct Lowercase {
- static bool Is(uchar c);
-};
struct Letter {
static bool Is(uchar c);
};
+#ifndef V8_INTL_SUPPORT
struct V8_EXPORT_PRIVATE ID_Start {
static bool Is(uchar c);
};
@@ -195,6 +193,7 @@ struct V8_EXPORT_PRIVATE ID_Continue {
struct V8_EXPORT_PRIVATE WhiteSpace {
static bool Is(uchar c);
};
+#endif // !V8_INTL_SUPPORT
struct V8_EXPORT_PRIVATE LineTerminator {
static bool Is(uchar c);
};
« no previous file with comments | « src/char-predicates.cc ('k') | src/unicode.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698