| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library test.library_imports; | 5 library test.library_exports_shown; |
| 6 | 6 |
| 7 import 'dart:mirrors'; | 7 import 'dart:mirrors'; |
| 8 import 'package:expect/expect.dart'; | 8 import 'package:expect/expect.dart'; |
| 9 import 'stringify.dart'; | 9 import 'stringify.dart'; |
| 10 | 10 |
| 11 import 'library_exports_shown.dart'; | 11 import 'library_exports_shown.dart'; |
| 12 | 12 |
| 13 test(MirrorSystem mirrors) { | 13 test(MirrorSystem mirrors) { |
| 14 LibraryMirror shown = mirrors.findLibrary(#library_exports_shown); | 14 LibraryMirror shown = mirrors.findLibrary(#library_exports_shown); |
| 15 LibraryMirror a = mirrors.findLibrary(#library_imports_a); | 15 LibraryMirror a = mirrors.findLibrary(#library_imports_a); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 26 ' show somethingFromA\n' | 26 ' show somethingFromA\n' |
| 27 ' show somethingFromBoth\n' | 27 ' show somethingFromBoth\n' |
| 28 'export library_imports_b\n' | 28 'export library_imports_b\n' |
| 29 ' show somethingFromB\n', | 29 ' show somethingFromB\n', |
| 30 stringifyDependencies(shown)); | 30 stringifyDependencies(shown)); |
| 31 } | 31 } |
| 32 | 32 |
| 33 main() { | 33 main() { |
| 34 test(currentMirrorSystem()); | 34 test(currentMirrorSystem()); |
| 35 } | 35 } |
| OLD | NEW |