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

Side by Side Diff: pkg/docgen/test/multi_library_code/lib/test_lib_bar.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
(Empty)
1 library test_lib.bar;
2
3 import 'test_lib.dart';
4
5 /*
6 * Normal comment for class C.
7 */
8 class C {
9 }
10
11 /// [input] is of type [C] returns an [A].
12 A generateFoo(C input) {
13 throw 'noop';
14 }
15
16 /// Processes a [C] instance for testing.
17 ///
18 /// To eliminate import warnings for [A] and to test typedefs.
19 typedef A AnATransformer(C other);
OLDNEW
« no previous file with comments | « pkg/docgen/test/multi_library_code/lib/test_lib.dart ('k') | pkg/docgen/test/multi_library_code/lib/test_lib_foo.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698