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

Unified Diff: tests/language/execute_finally7_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/deopt_no_feedback_test.dart ('k') | tests/language/fannkuch_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/execute_finally7_test.dart
diff --git a/tests/language/execute_finally7_test.dart b/tests/language/execute_finally7_test.dart
index 265e4c17cfa0263b97f4c08da625f5fdfb307cd8..6b68a0b0277bfabc765398a9c1463bc955fae269 100644
--- a/tests/language/execute_finally7_test.dart
+++ b/tests/language/execute_finally7_test.dart
@@ -14,7 +14,7 @@ class Helper {
static int f1(int k) {
var b;
try {
- var a = new List(10);
+ var a = new List.fixedLength(10);
int i = 0;
while (i < 10) {
int j = i;
« no previous file with comments | « tests/language/deopt_no_feedback_test.dart ('k') | tests/language/fannkuch_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698