| OLD | NEW |
| 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 |
| 1 library test_lib.bar; | 5 library test_lib.bar; |
| 2 | 6 |
| 3 import 'test_lib.dart'; | 7 import 'test_lib.dart'; |
| 4 | 8 |
| 5 /* | 9 /* |
| 6 * Normal comment for class C. | 10 * Normal comment for class C. |
| 7 */ | 11 */ |
| 8 class C { | 12 class C { |
| 9 } | 13 } |
| 10 | 14 |
| 11 /// [input] is of type [C] returns an [A]. | 15 /// [input] is of type [C] returns an [A]. |
| 12 A generateFoo(C input) { | 16 A generateFoo(C input) { |
| 13 throw 'noop'; | 17 throw 'noop'; |
| 14 } | 18 } |
| 15 | 19 |
| 16 /// Processes a [C] instance for testing. | 20 /// Processes a [C] instance for testing. |
| 17 /// | 21 /// |
| 18 /// To eliminate import warnings for [A] and to test typedefs. | 22 /// To eliminate import warnings for [A] and to test typedefs. |
| 19 typedef A AnATransformer(C other); | 23 typedef A AnATransformer(C other); |
| OLD | NEW |