Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(362)

Side by Side Diff: pkg/docgen/test/multi_library_code/lib/temp.dart

Issue 172873002: pkg/docgen: putting test code in file system (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « pkg/docgen/test/generate_json_test.dart ('k') | pkg/docgen/test/multi_library_code/lib/temp2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698