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

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

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

Powered by Google App Engine
This is Rietveld 408576698