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

Unified Diff: runtime/lib/array.dart

Issue 139663003: Fix 16099: Invocation's positionalArguments contains an immutable array. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 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/array.dart
===================================================================
--- runtime/lib/array.dart (revision 31835)
+++ runtime/lib/array.dart (working copy)
@@ -291,6 +291,9 @@
"ImmutableArray can only be allocated by the VM");
}
+ factory _ImmutableList._from(List from, int offset, int length)
+ native "ImmutableList_from";
+
E operator [](int index) native "List_getIndexed";
void operator []=(int index, E value) {

Powered by Google App Engine
This is Rietveld 408576698