| 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; | 5 library test_lib; |
| 2 | 6 |
| 3 import 'test_lib_foo.dart'; | 7 import 'test_lib_foo.dart'; |
| 4 import 'test_lib_bar.dart'; | 8 import 'test_lib_bar.dart'; |
| 5 export 'test_lib_foo.dart'; | 9 export 'test_lib_foo.dart'; |
| 6 export 'test_lib_bar.dart'; | 10 export 'test_lib_bar.dart'; |
| 7 | 11 |
| 8 /** | 12 /** |
| 9 * Doc comment for class [A]. | 13 * Doc comment for class [A]. |
| 10 * | 14 * |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 */ | 32 */ |
| 29 void doThis(int A) { | 33 void doThis(int A) { |
| 30 print(A); | 34 print(A); |
| 31 } | 35 } |
| 32 } | 36 } |
| 33 | 37 |
| 34 // A trivial use of `B` and `C` to eliminate import warnings | 38 // A trivial use of `B` and `C` to eliminate import warnings |
| 35 B sampleMethod(C cInstance) { | 39 B sampleMethod(C cInstance) { |
| 36 throw new UnimplementedError(); | 40 throw new UnimplementedError(); |
| 37 } | 41 } |
| OLD | NEW |