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

Side by Side Diff: pkg/docgen/test/multi_library_code/lib/test_lib_foo.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.foo; 5 library test_lib.foo;
2 6
3 import 'test_lib.dart'; 7 import 'test_lib.dart';
4 8
5 /** 9 /**
6 * Doc comment for class [B]. 10 * Doc comment for class [B].
7 * 11 *
8 * Multiline Test 12 * Multiline Test
9 */ 13 */
10 14
(...skipping 17 matching lines...) Expand all
28 * Test for linking to parameter [c] 32 * Test for linking to parameter [c]
29 */ 33 */
30 void doThis(int c) { 34 void doThis(int c) {
31 print(c); 35 print(c);
32 } 36 }
33 } 37 }
34 38
35 int testFunc(int a) { 39 int testFunc(int a) {
36 return a; 40 return a;
37 } 41 }
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