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

Side by Side Diff: pkg/docgen/test/multi_library_code/lib/test_lib.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 testLib; 1 library test_lib;
2 import 'temp2.dart'; 2
3 import 'temp3.dart'; 3 import 'test_lib_foo.dart';
4 export 'temp2.dart'; 4 import 'test_lib_bar.dart';
5 export 'temp3.dart'; 5 export 'test_lib_foo.dart';
6 export 'test_lib_bar.dart';
6 7
7 /** 8 /**
8 * Doc comment for class [A]. 9 * Doc comment for class [A].
9 * 10 *
10 * Multiline Test 11 * Multiline Test
11 */ 12 */
12 /* 13 /*
13 * Normal comment for class A. 14 * Normal comment for class A.
14 */ 15 */
15 class A { 16 class A {
(...skipping 11 matching lines...) Expand all
27 */ 28 */
28 void doThis(int A) { 29 void doThis(int A) {
29 print(A); 30 print(A);
30 } 31 }
31 } 32 }
32 33
33 // A trivial use of `B` and `C` to eliminate import warnings 34 // A trivial use of `B` and `C` to eliminate import warnings
34 B sampleMethod(C cInstance) { 35 B sampleMethod(C cInstance) {
35 throw new UnimplementedError(); 36 throw new UnimplementedError();
36 } 37 }
OLDNEW
« no previous file with comments | « pkg/docgen/test/multi_library_code/lib/temp3.dart ('k') | pkg/docgen/test/multi_library_code/lib/test_lib_bar.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698