Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 // VMOptions=--old_gen_heap_size=50 | |
| 5 | |
| 6 // Test that non-capturing closures don't retain unnecessary memory. | |
| 7 | |
| 8 import "package:expect/expect.dart"; | |
| 9 | |
| 10 foo() { | |
| 11 return () { }; | |
| 12 } | |
| 13 | |
| 14 bar(a, b) { | |
| 15 f() => [a, b]; | |
|
hausner
2014/10/30 17:07:27
Would be nice to add a comment that explains what
Florian Schneider
2014/10/30 17:21:58
Done.
| |
| 16 return foo(); | |
| 17 } | |
| 18 | |
| 19 main() { | |
| 20 var closure = null; | |
| 21 for (var i = 0; i < 100; i++) { | |
| 22 closure = bar(closure, new List(1024 * 1024)); | |
| 23 } | |
| 24 Expect.isTrue(closure is Function); | |
| 25 } | |
| OLD | NEW |