| Index: tools/html-json-doc/test/test_data/jsonToHtml/TestHtmlInput.dart
|
| diff --git a/tools/html-json-doc/test/test_data/jsonToHtml/TestHtmlInput.dart b/tools/html-json-doc/test/test_data/jsonToHtml/TestHtmlInput.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0bd115e16b27cad4bc73259e59b1972eda0a99d7
|
| --- /dev/null
|
| +++ b/tools/html-json-doc/test/test_data/jsonToHtml/TestHtmlInput.dart
|
| @@ -0,0 +1,62 @@
|
| +/// @docsEditable
|
| +library testInput;
|
| +
|
| +/// @docsEditable
|
| +class InputTestCase1 {
|
| +
|
| +}
|
| +
|
| +/// @docsEditable
|
| +class InputTestCase2 extends InputTestCase1 {
|
| +
|
| +}
|
| +
|
| +/// @docsEditable
|
| +class InputTestCase3 extends InputTestCase2 {
|
| +
|
| +}
|
| +
|
| +/*
|
| + * NO. This is not a dartdoc comment and should not be picked up.
|
| + * The output of this comment should be nothing.
|
| + */
|
| +/// @docsEditable
|
| +class InputTestCase4 {
|
| +
|
| +}
|
| +
|
| +/**
|
| + * NO. This multi-line dartdoc comment doesn't have the /// @docsEditable stuff.
|
| + * This comment should not show up in the JSON.
|
| + * Note that the /// @docsEditable in this line and the one above are ignored.
|
| + */
|
| +class InputTestCase5 {
|
| +
|
| +}
|
| +
|
| +/// NO. This is a single line dartdoc comment that is ignored.
|
| +class InputTestCase6 {
|
| +
|
| +}
|
| +
|
| +/// NO. This is a multi-line dartdoc comment that is ignored.
|
| +/// It is made of multiple single line dartdoc comments.
|
| +class InputTestCase7 {
|
| +
|
| + /// @docsEditable
|
| + var InputTestCase8;
|
| +
|
| + /// @docsEditable
|
| + var InputTestCase9;
|
| +
|
| + /// @docsEditable
|
| + var InputTestCase10;
|
| +
|
| + /**
|
| + * NO.This multi-line comment on a member is ignored.
|
| + */
|
| + var InputTestCase11;
|
| +
|
| + /// NO. This single line dartdoc comment on a member is ignored.
|
| + var InputTestCase12;
|
| +}
|
|
|