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

Side by Side Diff: pkg/docgen/test/multi_library_code/lib/test_lib.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; 5 library test_lib;
2 6
3 import 'test_lib_foo.dart'; 7 import 'test_lib_foo.dart';
4 import 'test_lib_bar.dart'; 8 import 'test_lib_bar.dart';
5 export 'test_lib_foo.dart'; 9 export 'test_lib_foo.dart';
6 export 'test_lib_bar.dart'; 10 export 'test_lib_bar.dart';
7 11
8 /** 12 /**
9 * Doc comment for class [A]. 13 * Doc comment for class [A].
10 * 14 *
(...skipping 17 matching lines...) Expand all
28 */ 32 */
29 void doThis(int A) { 33 void doThis(int A) {
30 print(A); 34 print(A);
31 } 35 }
32 } 36 }
33 37
34 // A trivial use of `B` and `C` to eliminate import warnings 38 // A trivial use of `B` and `C` to eliminate import warnings
35 B sampleMethod(C cInstance) { 39 B sampleMethod(C cInstance) {
36 throw new UnimplementedError(); 40 throw new UnimplementedError();
37 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698