| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 1 library library.name.wiith.dots.init; | 5 library library.name.wiith.dots.init; |
| 2 | 6 |
| 3 /// This library is purely for testing purposes, to ensure | 7 /// This library is purely for testing purposes, to ensure |
| 4 /// that we have a library that has dots in its name and | 8 /// that we have a library that has dots in its name and |
| 5 /// that it works properly | 9 /// that it works properly |
| 6 /// | 10 /// |
| 7 /// In addition, it's nice to have something which has paragraph | 11 /// In addition, it's nice to have something which has paragraph |
| 8 /// breaks inside a triple-slash doc comment. | 12 /// breaks inside a triple-slash doc comment. |
| 9 /// | 13 /// |
| 10 /// Like this. | 14 /// Like this. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 29 } |
| 26 | 30 |
| 27 /// This is another class. | 31 /// This is another class. |
| 28 class AnotherClass { | 32 class AnotherClass { |
| 29 /// This method returns [List<int>] containing the number | 33 /// This method returns [List<int>] containing the number |
| 30 /// three three times. Compare with [SomeClass.someMethod]. | 34 /// three three times. Compare with [SomeClass.someMethod]. |
| 31 List<int> anotherMethod() { | 35 List<int> anotherMethod() { |
| 32 return const [3, 3, 3]; | 36 return const [3, 3, 3]; |
| 33 } | 37 } |
| 34 } | 38 } |
| OLD | NEW |