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

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

Issue 1364553002: remove docgen source and targets from build (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: remove scripts Created 5 years, 3 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
OLDNEW
(Empty)
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
5 library test_lib.foo;
6
7 import 'test_lib.dart';
8
9 /**
10 * Doc comment for class [B].
11 *
12 * Multiline Test
13 */
14
15 /*
16 * Normal comment for class B.
17 */
18 class B extends A {
19
20 B();
21 B.fooBar();
22
23 /**
24 * Test for linking to super
25 */
26 int doElse(int b) {
27 print(b);
28 return b;
29 }
30
31 /**
32 * Test for linking to parameter [c]
33 */
34 void doThis(int c) {
35 print(c);
36 }
37 }
38
39 int testFunc(int a) {
40 return a;
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