| 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 single_library_test; | 5 library single_library_test; |
| 2 | 6 |
| 3 import 'package:path/path.dart' as p; | 7 import 'package:path/path.dart' as p; |
| 4 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 5 | 9 |
| 6 import '../lib/docgen.dart'; | 10 import '../lib/docgen.dart'; |
| 7 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.
dart' | 11 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.
dart' |
| 8 as dart2js_util; | 12 as dart2js_util; |
| 9 | 13 |
| 10 import 'util.dart'; | 14 import 'util.dart'; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 expect(methodParameterDocComment, 'test_lib.B'); | 85 expect(methodParameterDocComment, 'test_lib.B'); |
| 82 | 86 |
| 83 methodParameterDocComment = exportedClass.fixReference( | 87 methodParameterDocComment = exportedClass.fixReference( |
| 84 'testFunc').children.first.text; | 88 'testFunc').children.first.text; |
| 85 expect(methodParameterDocComment, 'test_lib.testFunc'); | 89 expect(methodParameterDocComment, 'test_lib.testFunc'); |
| 86 | 90 |
| 87 }); | 91 }); |
| 88 }); | 92 }); |
| 89 }); | 93 }); |
| 90 } | 94 } |
| OLD | NEW |