| 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 test_lib.foo; | 5 library test_lib.foo; |
| 2 | 6 |
| 3 import 'test_lib.dart'; | 7 import 'test_lib.dart'; |
| 4 | 8 |
| 5 /** | 9 /** |
| 6 * Doc comment for class [B]. | 10 * Doc comment for class [B]. |
| 7 * | 11 * |
| 8 * Multiline Test | 12 * Multiline Test |
| 9 */ | 13 */ |
| 10 | 14 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * Test for linking to parameter [c] | 32 * Test for linking to parameter [c] |
| 29 */ | 33 */ |
| 30 void doThis(int c) { | 34 void doThis(int c) { |
| 31 print(c); | 35 print(c); |
| 32 } | 36 } |
| 33 } | 37 } |
| 34 | 38 |
| 35 int testFunc(int a) { | 39 int testFunc(int a) { |
| 36 return a; | 40 return a; |
| 37 } | 41 } |
| OLD | NEW |