| 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 // | 4 // |
| 5 // Dart test for new function type alias. | 5 // Dart test for new function type alias. |
| 6 | 6 |
| 7 class FunctionLiteralsTest { | 7 class FunctionLiteralsTest { |
| 8 | 8 |
| 9 static void testMain() { | 9 static void testMain() { |
| 10 f(x) { return x * 2;} | 10 f(x) { return x * 2;} |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 class B { | 67 class B { |
| 68 var f; | 68 var f; |
| 69 int n; | 69 int n; |
| 70 B(z) : f = ((x) => x * x) { n = z; } | 70 B(z) : f = ((x) => x * x) { n = z; } |
| 71 B.n(z) : f = ((x) { return x * x + 1; }) { n = z; } | 71 B.n(z) : f = ((x) { return x * x + 1; }) { n = z; } |
| 72 } | 72 } |
| 73 | 73 |
| 74 main() { | 74 main() { |
| 75 FunctionLiteralsTest.testMain(); | 75 FunctionLiteralsTest.testMain(); |
| 76 } | 76 } |
| OLD | NEW |