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

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

Issue 209563002: pkg/docgen: the big refactor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: silly 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 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
1 library test_lib.bar; 5 library test_lib.bar;
2 6
3 import 'test_lib.dart'; 7 import 'test_lib.dart';
4 8
5 /* 9 /*
6 * Normal comment for class C. 10 * Normal comment for class C.
7 */ 11 */
8 class C { 12 class C {
9 } 13 }
10 14
11 /// [input] is of type [C] returns an [A]. 15 /// [input] is of type [C] returns an [A].
12 A generateFoo(C input) { 16 A generateFoo(C input) {
13 throw 'noop'; 17 throw 'noop';
14 } 18 }
15 19
16 /// Processes a [C] instance for testing. 20 /// Processes a [C] instance for testing.
17 /// 21 ///
18 /// To eliminate import warnings for [A] and to test typedefs. 22 /// To eliminate import warnings for [A] and to test typedefs.
19 typedef A AnATransformer(C other); 23 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