| OLD | NEW |
| 1 library testLib; | 1 library test_lib; |
| 2 import 'temp2.dart'; | 2 |
| 3 import 'temp3.dart'; | 3 import 'test_lib_foo.dart'; |
| 4 export 'temp2.dart'; | 4 import 'test_lib_bar.dart'; |
| 5 export 'temp3.dart'; | 5 export 'test_lib_foo.dart'; |
| 6 export 'test_lib_bar.dart'; |
| 6 | 7 |
| 7 /** | 8 /** |
| 8 * Doc comment for class [A]. | 9 * Doc comment for class [A]. |
| 9 * | 10 * |
| 10 * Multiline Test | 11 * Multiline Test |
| 11 */ | 12 */ |
| 12 /* | 13 /* |
| 13 * Normal comment for class A. | 14 * Normal comment for class A. |
| 14 */ | 15 */ |
| 15 class A { | 16 class A { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 27 */ | 28 */ |
| 28 void doThis(int A) { | 29 void doThis(int A) { |
| 29 print(A); | 30 print(A); |
| 30 } | 31 } |
| 31 } | 32 } |
| 32 | 33 |
| 33 // A trivial use of `B` and `C` to eliminate import warnings | 34 // A trivial use of `B` and `C` to eliminate import warnings |
| 34 B sampleMethod(C cInstance) { | 35 B sampleMethod(C cInstance) { |
| 35 throw new UnimplementedError(); | 36 throw new UnimplementedError(); |
| 36 } | 37 } |
| OLD | NEW |