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

Side by Side Diff: pkg/docgen/test/simple/bin/second.dart

Issue 16948010: added Command Line Arguments, support for directories, hiding private data, not parsing the SDK, rem (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 part of DummyLibrary;
Andrei Mouravski 2013/06/18 10:17:45 These files could be generated on the spot instead
2
3 /**
4 * Doc comment for class C.
5 */
6 /*
7 * Normal comment for class C.
8 */
9 class C extends Iterable {
10
11 /**
12 * Markdown _test_ for **class** [C]
13 */
14 int _someNumber;
15
16 C() {
17 _someNumber = 12;
18 }
19
20 int get someNumber => _someNumber;
21
22 void doThis(int x) {
23 print(x);
24 }
25
26 int multi(int x) {
27 return x * _someNumber;
28 }
29
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698