Chromium Code Reviews| Index: pkg/docgen/test/simple/bin/second.dart |
| diff --git a/pkg/docgen/test/simple/bin/second.dart b/pkg/docgen/test/simple/bin/second.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6d6c6c13f43d3567734b3539c349d660e14eee8f |
| --- /dev/null |
| +++ b/pkg/docgen/test/simple/bin/second.dart |
| @@ -0,0 +1,30 @@ |
| +part of DummyLibrary; |
|
Andrei Mouravski
2013/06/18 10:17:45
These files could be generated on the spot instead
|
| + |
| +/** |
| + * Doc comment for class C. |
| + */ |
| +/* |
| + * Normal comment for class C. |
| + */ |
| +class C extends Iterable { |
| + |
| + /** |
| + * Markdown _test_ for **class** [C] |
| + */ |
| + int _someNumber; |
| + |
| + C() { |
| + _someNumber = 12; |
| + } |
| + |
| + int get someNumber => _someNumber; |
| + |
| + void doThis(int x) { |
| + print(x); |
| + } |
| + |
| + int multi(int x) { |
| + return x * _someNumber; |
| + } |
| + |
| +} |