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

Unified Diff: tests/language/fannkuch_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/execute_finally7_test.dart ('k') | tests/language/gc_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/fannkuch_test.dart
diff --git a/tests/language/fannkuch_test.dart b/tests/language/fannkuch_test.dart
index 356f20f588f6538b4fc9cc5c959486942ec5ccae..a38d34dde0703d48893cb3ac4e5c8c295e69991e 100644
--- a/tests/language/fannkuch_test.dart
+++ b/tests/language/fannkuch_test.dart
@@ -8,7 +8,7 @@
class FannkuchTest {
static fannkuch(n) {
- var p = new List(n), q = new List(n), s = new List(n);
+ var p = new List.fixedLength(n), q = new List.fixedLength(n), s = new List.fixedLength(n);
var sign = 1, maxflips = 0, sum = 0, m = n - 1;
for (var i = 0; i < n; i++) { p[i] = i; q[i] = i; s[i] = i; }
do {
« no previous file with comments | « tests/language/execute_finally7_test.dart ('k') | tests/language/gc_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698