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

Unified Diff: tests/language/optimized_lists_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/optimization_test.dart ('k') | tests/language/ordered_maps_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/optimized_lists_test.dart
diff --git a/tests/language/optimized_lists_test.dart b/tests/language/optimized_lists_test.dart
index cc3b86299a3cdbf651e435c78af869ce9bda19d3..cd2a59648c0302cd136fbd8546322c815848bc51 100644
--- a/tests/language/optimized_lists_test.dart
+++ b/tests/language/optimized_lists_test.dart
@@ -13,7 +13,7 @@ main() {
test(n) {
var a = new List(); // Growable list.
- var b = new List(10); // Fixed size list.
+ var b = new List.fixedLength(10); // Fixed size list.
var c = const [1, 2, 3, 4]; // Constant aray.
// In optimized mode the class checks will be eliminated since the
// constructors above provide information about exact types.
« no previous file with comments | « tests/language/optimization_test.dart ('k') | tests/language/ordered_maps_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698