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

Unified Diff: tests/language/gc_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/gc_test.dart
diff --git a/tests/language/gc_test.dart b/tests/language/gc_test.dart
index b64a4e31ea9d65b849234158a94ac9f7d5a126e2..33e488c0106c50f13b2e8ced462b50cf41a58a66 100644
--- a/tests/language/gc_test.dart
+++ b/tests/language/gc_test.dart
@@ -3,14 +3,13 @@
// BSD-style license that can be found in the LICENSE file.
// Testing GC, issue 1469.
-
main() {
var div;
for (int i = 0; i < 200; ++i) {
List l = new List(1000000);
- var m = 2;
+ var m = 2;
div = (_) {
- var b = l; // Was causing OutOfMemory.
+ var b = l; // Was causing OutOfMemory.
};
var lSmall = new List(3);
// Circular reference between new and old gen objects.

Powered by Google App Engine
This is Rietveld 408576698