OLD | NEW |
(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 } |
OLD | NEW |