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

Side by Side Diff: tests/language_strong/closure_cycles_test.dart

Issue 2997723002: Revert "Migrating a block of dart 2:" (Closed)
Patch Set: Created 3 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // Based on dartbug.com/7681 4 // Based on dartbug.com/7681
5 // Verify that context chains do not lead to unintended memory being held. 5 // Verify that context chains do not lead to unintended memory being held.
6 6
7 library closure_cycles_test; 7 library closure_cycles_test;
8 8
9 import "dart:async"; 9 import "dart:async";
10 10
(...skipping 23 matching lines...) Expand all
34 y.onY = () { 34 y.onY = () {
35 y; // Capturing y can lead to endless context chains! 35 y; // Capturing y can lead to endless context chains!
36 doIt(); 36 doIt();
37 }; 37 };
38 }; 38 };
39 } 39 }
40 40
41 void main() { 41 void main() {
42 doIt(); 42 doIt();
43 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698