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

Side by Side Diff: tools/html-json-doc/test/test_data/jsonToHtml/TestHtmlInput.dart

Issue 11412144: HTML human writable docs working end to end!... mostly... (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed two small issues. Created 8 years 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 /// @docsEditable
2 library testInput;
3
4 /// @docsEditable
5 class InputTestCase1 {
6
7 }
8
9 /// @docsEditable
10 class InputTestCase2 extends InputTestCase1 {
11
12 }
13
14 /// @docsEditable
15 class InputTestCase3 extends InputTestCase2 {
16
17 }
18
19 /*
20 * NO. This is not a dartdoc comment and should not be picked up.
21 * The output of this comment should be nothing.
22 */
23 /// @docsEditable
24 class InputTestCase4 {
25
26 }
27
28 /**
29 * NO. This multi-line dartdoc comment doesn't have the /// @docsEditable stuff.
30 * This comment should not show up in the JSON.
31 * Note that the /// @docsEditable in this line and the one above are ignored.
32 */
33 class InputTestCase5 {
34
35 }
36
37 /// NO. This is a single line dartdoc comment that is ignored.
38 class InputTestCase6 {
39
40 }
41
42 /// NO. This is a multi-line dartdoc comment that is ignored.
43 /// It is made of multiple single line dartdoc comments.
44 class InputTestCase7 {
45
46 /// @docsEditable
47 var InputTestCase8;
48
49 /// @docsEditable
50 var InputTestCase9;
51
52 /// @docsEditable
53 var InputTestCase10;
54
55 /**
56 * NO.This multi-line comment on a member is ignored.
57 */
58 var InputTestCase11;
59
60 /// NO. This single line dartdoc comment on a member is ignored.
61 var InputTestCase12;
62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698