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

Side by Side Diff: tools/html-json-doc/test/test_output/htmlToJsonTest.json

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 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 "TestHtmlInput.dart":
3 {
4 "library testInput;":
5 [
6 "/**",
7 " * YES. This is a library level dartdoc comment.",
8 " * This should show up correctly in the JSON.",
9 " */"
10 ],
11 "class InputTestCase1 {":
12 [
13 "/**",
14 " * YES. This is a multi-line dartdoc comment.",
15 " * This is one line.",
16 " * And it keeps going to this line, too.",
17 " */"
18 ],
19 "class InputTestCase2 extends InputTestCase1 {":
20 [
21 "/// YES. This is a single line dartdoc comment."
22 ],
23 "class InputTestCase3 extends InputTestCase2 {":
24 [
25 "/// YES. This is a multi-line dartdoc comment.",
26 "/// It happens to use multiple single line dartdoc comments."
27 ],
28 " var InputTestCase8;":
29 [
30 " /**",
31 " * YES. This is a multi-line comment on a member.",
32 " */"
33 ],
34 " var InputTestCase9;":
35 [
36 " /// YES. This is a single line dartdoc comment on a member."
37 ],
38 " var InputTestCase10;":
39 [
40 " /// YES. This is a multi-line dartdoc comment on a member.",
41 " /// It is split over two lines."
42 ]
43 },
44 "TestHtmlInput2.dart":
45 {
46 "class InputTestCase1 {":
47 [
48 "/**",
49 " * This is a multi-line dartdoc comment.",
50 " * This is one line.",
51 " * And it keeps going to this line, too.",
52 " */"
53 ],
54 "class InputTestCase2 extends InputTestCase1 {":
55 [
56 "/// This is a single line dartdoc comment."
57 ],
58 "class InputTestCase3 extends InputTestCase2 {":
59 [
60 "/// This is a multi-line dartdoc comment.",
61 "/// It happens to use multiple single line dartdoc comments."
62 ],
63 " var InputTestCase8;":
64 [
65 " /**",
66 " * This is a multi-line comment on a member.",
67 " */"
68 ],
69 " var InputTestCase9;":
70 [
71 " /// This is a single line dartdoc comment on a member."
72 ],
73 " var InputTestCase10;":
74 [
75 " /// This is a multi-line dartdoc comment on a member.",
76 " /// It is split over two lines."
77 ]
78 }
79 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698