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

Unified Diff: runtime/lib/string_patch.dart

Issue 2717573003: Fix errors in VM patch files. (Closed)
Patch Set: 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 | « runtime/lib/errors_patch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/string_patch.dart
diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart
index a4bb7e7cb9a4d52cfa2a3603861786f339a9e26c..9c7e5843b1f77fcc73dbc06fe80bc79e642be115 100644
--- a/runtime/lib/string_patch.dart
+++ b/runtime/lib/string_patch.dart
@@ -217,12 +217,6 @@ abstract class _StringBase {
return s;
}
- static String _createTwoByteString(List<int> charCodes, int start, int len) {
- // TODO(lrn): Create string without scanning charCodes again - all values
- // in the [start..end] range are uint16 values.
- return _createFromCodePoints(charCodes, start, end);
- }
-
static String _createFromCodePoints(List<int> codePoints, int start, int end)
native "StringBase_createFromCodePoints";
« no previous file with comments | « runtime/lib/errors_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698