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

Unified Diff: corelib/src/GrowableObjectArrayVMTest.dart

Issue 8346022: - Remove remaining Array interface. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/tests/
Patch Set: Created 9 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: corelib/src/GrowableObjectArrayVMTest.dart
===================================================================
--- corelib/src/GrowableObjectArrayVMTest.dart (revision 543)
+++ corelib/src/GrowableObjectArrayVMTest.dart (working copy)
@@ -81,7 +81,7 @@
testOutOfBoundForIndexOf();
GrowableObjectArray<int> h = new GrowableObjectArray<int>.withCapacity(10);
- Array constArray = const [0, 1, 2, 3, 4];
+ List constArray = const [0, 1, 2, 3, 4];
h.addAll(constArray);
Expect.equals(5, h.length);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698