Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 library testLib.bar; | 1 library testLib.bar; |
| 2 import 'temp.dart'; | 2 import 'temp.dart'; |
| 3 | 3 |
| 4 /* | 4 /* |
| 5 * Normal comment for class C. | 5 * Normal comment for class C. |
| 6 */ | 6 */ |
| 7 class C { | 7 class C { |
| 8 } | 8 } |
| 9 | 9 |
| 10 // A trivial use of `A` to eliminate import warnings | 10 /// A trivial use of `A` to eliminate import warnings. |
| 11 A usingImport() { | 11 /// |
| 12 throw new UnimplementedError(); | 12 /// And to test typedef preview. |
| 13 } | 13 typedef A AnATransformer(A input); |
| OLD | NEW |