Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 // Dart test program for testing invocation of implicit closures. | 4 // Dart test program for testing invocation of implicit closures. |
| 5 // VMOptions= | |
|
regis
2011/11/28 23:25:47
Is this line necessary?
srdjan
2011/11/28 23:29:30
Yes, so that we run it also with no VM options.
| |
| 6 // VMOptions=--use_slow_path | |
| 5 | 7 |
| 6 class First { | 8 class First { |
| 7 First(this.i) {} | 9 First(this.i) {} |
| 8 var b; | 10 var b; |
| 9 int foo() { return i; } | 11 int foo() { return i; } |
| 10 Function foo1() { | 12 Function foo1() { |
| 11 local() { | 13 local() { |
| 12 return i; | 14 return i; |
| 13 } | 15 } |
| 14 return local; | 16 return local; |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 29 | 31 |
| 30 var ib = obj.foo; | 32 var ib = obj.foo; |
| 31 Expect.equals(obj.i, ib()); | 33 Expect.equals(obj.i, ib()); |
| 32 } | 34 } |
| 33 } | 35 } |
| 34 | 36 |
| 35 | 37 |
| 36 main() { | 38 main() { |
| 37 ImplicitClosureTest.testMain(); | 39 ImplicitClosureTest.testMain(); |
| 38 } | 40 } |
| OLD | NEW |