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

Unified Diff: src/external-reference-table.cc

Issue 2859203002: [string] Move String.p.toLowerCase to CSA (Closed)
Patch Set: Remove unused code Created 3 years, 7 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
Index: src/external-reference-table.cc
diff --git a/src/external-reference-table.cc b/src/external-reference-table.cc
index 276d0ea91ec9a5948aab504660e40cedccb438a1..801f34eb55180701eb5ef9d24960b11e7df3a64d 100644
--- a/src/external-reference-table.cc
+++ b/src/external-reference-table.cc
@@ -250,6 +250,10 @@ void ExternalReferenceTable::AddReferences(Isolate* isolate) {
"libc_memset");
Add(ExternalReference::try_internalize_string_function(isolate).address(),
"try_internalize_string_function");
+ Add(ExternalReference::intl_convert_one_byte_to_lower(isolate).address(),
+ "intl_convert_one_byte_to_lower");
+ Add(ExternalReference::intl_to_latin1_lower_table(isolate).address(),
+ "intl_to_latin1_lower_table");
Camillo Bruni 2017/05/05 10:10:03 Don't you need the #ifdef V8_INTL_SUPPORT here as
jgruber 2017/05/05 10:21:58 Right, nice catch.
Add(ExternalReference::search_string_raw<const uint8_t, const uint8_t>(
isolate)
.address(),

Powered by Google App Engine
This is Rietveld 408576698