OLD | NEW |
---|---|
(Empty) | |
1 library testLib; | |
2 import 'temp2.dart'; | |
3 import 'temp3.dart'; | |
4 export 'temp2.dart'; | |
5 export 'temp3.dart'; | |
6 | |
7 /** | |
8 * Doc comment for class [A]. | |
9 * | |
10 * Multiline Test | |
11 */ | |
12 /* | |
13 * Normal comment for class A. | |
14 */ | |
15 class A { | |
16 | |
17 int _someNumber; | |
18 | |
19 A() { | |
20 _someNumber = 12; | |
21 } | |
22 | |
23 A.customConstructor(); | |
24 | |
25 /** | |
26 * Test for linking to parameter [A] | |
27 */ | |
28 void doThis(int A) { | |
29 print(A); | |
30 } | |
31 } | |
32 | |
33 // A trivial use of `B` and `C` to eliminate import warnings | |
34 B sampleMethod(C cInstance) { | |
35 throw new UnimplementedError(); | |
36 } | |
OLD | NEW |