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

Side by Side Diff: pkg/docgen/test/multi_library_code/lib/temp2.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 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 }
OLDNEW
« no previous file with comments | « pkg/docgen/test/multi_library_code/lib/temp.dart ('k') | pkg/docgen/test/multi_library_code/lib/temp3.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698