| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 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 | 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 // VMOptions=--old_gen_heap_size=50 | 4 // VMOptions=--old_gen_heap_size=50 |
| 5 | 5 |
| 6 // Test that non-capturing closures don't retain unnecessary memory. | 6 // Test that non-capturing closures don't retain unnecessary memory. |
| 7 // It tests that the context of `f` allocated within `bar` not leaking and does | 7 // It tests that the context of `f` allocated within `bar` not leaking and does |
| 8 // not become the context of empty non-capturing closure allocated inside `foo`. | 8 // not become the context of empty non-capturing closure allocated inside `foo`. |
| 9 // If failing it crashes with an OOM error. | 9 // If failing it crashes with an OOM error. |
| 10 | 10 |
| 11 import "package:expect/expect.dart"; | 11 import "package:expect/expect.dart"; |
| 12 | 12 |
| 13 foo() { | 13 foo() { |
| 14 return () { }; | 14 return () {}; |
| 15 } | 15 } |
| 16 | 16 |
| 17 bar(a, b) { | 17 bar(a, b) { |
| 18 f() => [a, b]; | 18 f() => [a, b]; |
| 19 return foo(); | 19 return foo(); |
| 20 } | 20 } |
| 21 | 21 |
| 22 main() { | 22 main() { |
| 23 var closure = null; | 23 var closure = null; |
| 24 for (var i = 0; i < 100; i++) { | 24 for (var i = 0; i < 100; i++) { |
| 25 closure = bar(closure, new List(1024 * 1024)); | 25 closure = bar(closure, new List(1024 * 1024)); |
| 26 } | 26 } |
| 27 Expect.isTrue(closure is Function); | 27 Expect.isTrue(closure is Function); |
| 28 } | 28 } |
| OLD | NEW |