| OLD | NEW |
| 1 library library.name.wiith.dots.init; | 1 library library.name.wiith.dots.init; |
| 2 | 2 |
| 3 /// This library is purely for testing purposes, to ensure | 3 /// This library is purely for testing purposes, to ensure |
| 4 /// that we have a library that has dots in its name and | 4 /// that we have a library that has dots in its name and |
| 5 /// that it works properly | 5 /// that it works properly |
| 6 /// | 6 /// |
| 7 /// In addition, it's nice to have something which has paragraph | 7 /// In addition, it's nice to have something which has paragraph |
| 8 /// breaks inside a triple-slash doc comment. | 8 /// breaks inside a triple-slash doc comment. |
| 9 /// | 9 /// |
| 10 /// Like this. | 10 /// Like this. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 /// This is another class. | 27 /// This is another class. |
| 28 class AnotherClass { | 28 class AnotherClass { |
| 29 /// This method returns [List<int>] containing the number | 29 /// This method returns [List<int>] containing the number |
| 30 /// three three times. Compare with [SomeClass.someMethod]. | 30 /// three three times. Compare with [SomeClass.someMethod]. |
| 31 List<int> anotherMethod() { | 31 List<int> anotherMethod() { |
| 32 return const [3, 3, 3]; | 32 return const [3, 3, 3]; |
| 33 } | 33 } |
| 34 } | 34 } |
| OLD | NEW |