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

Unified Diff: tests/language_strong/optimized_lists_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
Index: tests/language_strong/optimized_lists_test.dart
diff --git a/tests/language_strong/optimized_lists_test.dart b/tests/language_strong/optimized_lists_test.dart
index 24cd678a2fa486342de761a95ca5d585bfcb1adc..4d5b91fb84cd35caa447d2e9da2e1d9f6735779b 100644
--- a/tests/language_strong/optimized_lists_test.dart
+++ b/tests/language_strong/optimized_lists_test.dart
@@ -13,11 +13,10 @@ main() {
}
}
-
test(n) {
var a = new List(); // Growable list.
- var b = new List(10); // Fixed size list.
- var c = const [1, 2, 3, 4]; // Constant aray.
+ var b = new List(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.
a.add(4);

Powered by Google App Engine
This is Rietveld 408576698