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 function type parameters. | 4 // Dart test program for testing function type parameters. |
5 | 5 |
| 6 import "package:expect/expect.dart"; |
| 7 |
6 | 8 |
7 class Param2Test { | 9 class Param2Test { |
8 | 10 |
9 static forEach(List<int> a, int f(k)) { | 11 static forEach(List<int> a, int f(k)) { |
10 for (int i = 0; i < a.length; i++) { | 12 for (int i = 0; i < a.length; i++) { |
11 a[i] = f(a[i]); | 13 a[i] = f(a[i]); |
12 } | 14 } |
13 } | 15 } |
14 | 16 |
15 static int apply(f(int k), int arg) { | 17 static int apply(f(int k), int arg) { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 56 |
55 var isZero = (e) => e == 0; | 57 var isZero = (e) => e == 0; |
56 Expect.equals(false, exists(v, isZero)); | 58 Expect.equals(false, exists(v, isZero)); |
57 } | 59 } |
58 } | 60 } |
59 | 61 |
60 | 62 |
61 main() { | 63 main() { |
62 Param2Test.testMain(); | 64 Param2Test.testMain(); |
63 } | 65 } |
OLD | NEW |