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