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

Unified Diff: tests/language/index_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « tests/language/incr_op_test.dart ('k') | tests/language/inst_field_initializer1_negative_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/index_test.dart
diff --git a/tests/language/index_test.dart b/tests/language/index_test.dart
index 9e1c634621af55cdf456eac7954f115d741c5964..3462e4e8e336e92cdd87909b93f14e67a110ddf6 100644
--- a/tests/language/index_test.dart
+++ b/tests/language/index_test.dart
@@ -18,7 +18,7 @@ class IndexTest {
static const ID_IDLE = 0;
static testMain() {
- var a = new List(10);
+ var a = new List.fixedLength(10);
Expect.equals(10, a.length);
for (int i = 0; i < a.length; i++) {
a[i] = Helper.fibonacci(i);
« no previous file with comments | « tests/language/incr_op_test.dart ('k') | tests/language/inst_field_initializer1_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698