Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 library testLib2.foo; | |
| 2 import 'temp.dart'; | |
| 3 | |
| 4 /** | |
| 5 * Doc comment for class [B]. | |
| 6 * | |
| 7 * Multiline Test | |
| 8 */ | |
| 9 | |
| 10 /* | |
| 11 * Normal comment for class B. | |
| 12 */ | |
| 13 class B extends A { | |
| 14 | |
| 15 B(); | |
| 16 B.fooBar(); | |
| 17 | |
| 18 /** | |
| 19 * Test for linking to super | |
| 20 */ | |
| 21 int doElse(int b) { | |
| 22 print(b); | |
| 23 return b; | |
| 24 } | |
| 25 | |
| 26 /** | |
| 27 * Test for linking to parameter [c] | |
| 28 */ | |
| 29 void doThis(int c) { | |
| 30 print(c); | |
| 31 } | |
| 32 } | |
| 33 | |
| 34 int testFunc(int a) { | |
| 35 return a; | |
| 36 } | |
| OLD | NEW |