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

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

Issue 202193002: pkg/dartdoc: moving files around, fix library names (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixed year Created 6 years, 9 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
1 library testLib2.foo; 1 library test_lib.foo;
2 import 'temp.dart'; 2
3 import 'test_lib.dart';
3 4
4 /** 5 /**
5 * Doc comment for class [B]. 6 * Doc comment for class [B].
6 * 7 *
7 * Multiline Test 8 * Multiline Test
8 */ 9 */
9 10
10 /* 11 /*
11 * Normal comment for class B. 12 * Normal comment for class B.
12 */ 13 */
(...skipping 14 matching lines...) Expand all
27 * Test for linking to parameter [c] 28 * Test for linking to parameter [c]
28 */ 29 */
29 void doThis(int c) { 30 void doThis(int c) {
30 print(c); 31 print(c);
31 } 32 }
32 } 33 }
33 34
34 int testFunc(int a) { 35 int testFunc(int a) {
35 return a; 36 return a;
36 } 37 }
OLDNEW
« no previous file with comments | « pkg/docgen/test/multi_library_code/lib/test_lib_bar.dart ('k') | pkg/docgen/test/multi_library_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698