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

Unified Diff: runtime/lib/byte_array.dart

Issue 12391046: Add List.asMap(). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: runtime/lib/byte_array.dart
diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart
index ef482858b8e13812afd4e23014ba5a8eaeb6ab05..62fd4ef581271684f908629b9cc10a180b65602e 100644
--- a/runtime/lib/byte_array.dart
+++ b/runtime/lib/byte_array.dart
@@ -2047,6 +2047,10 @@ class _ByteArrayViewBase extends Collection<int> {
"Cannot add to a non-extendable array");
}
+ Map<int, int> asMap() {
+ return IterableMixinWorkaround.asMapList(this);
+ }
+
final ByteArray _array;
final int _offset;
final int length;

Powered by Google App Engine
This is Rietveld 408576698