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

Unified Diff: tests/language/type_vm_test.dart

Issue 11312122: Change List constructors. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload. Adapt code for List.fixedLength. Created 8 years 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 | « tests/language/optimized_lists_test.dart ('k') | tests/lib/async/slow_sink_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/type_vm_test.dart
diff --git a/tests/language/type_vm_test.dart b/tests/language/type_vm_test.dart
index 7b525a13a66c9646befa1d6e90254e1eb0526f29..8817613d260395aef2fc2a922fbcdc59f9af6ac1 100644
--- a/tests/language/type_vm_test.dart
+++ b/tests/language/type_vm_test.dart
@@ -377,7 +377,7 @@ class TypeTest {
static int testListAssigment() {
int result = 0;
{
- var a = new List(5);
+ var a = new List.fixedLength(5);
List a0 = a;
List<Object> ao = a;
List<int> ai = a;
« no previous file with comments | « tests/language/optimized_lists_test.dart ('k') | tests/lib/async/slow_sink_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698