| OLD | NEW |
| (Empty) |
| 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 | |
| 5 library test.library_imports; | |
| 6 | |
| 7 import 'dart:mirrors'; | |
| 8 import 'package:expect/expect.dart'; | |
| 9 import 'stringify.dart'; | |
| 10 | |
| 11 import 'library_exports_shown.dart'; | |
| 12 | |
| 13 test(MirrorSystem mirrors) { | |
| 14 LibraryMirror shown = mirrors.findLibrary(#library_exports_shown); | |
| 15 LibraryMirror a = mirrors.findLibrary(#library_imports_a); | |
| 16 LibraryMirror b = mirrors.findLibrary(#library_imports_b); | |
| 17 | |
| 18 LibraryMirror core = mirrors.findLibrary(#dart.core); | |
| 19 | |
| 20 Expect.setEquals([a, b, core], | |
| 21 shown.libraryDependencies.map((dep) => dep.targetLibrary)); | |
| 22 | |
| 23 Expect.stringEquals( | |
| 24 'import dart.core\n' | |
| 25 'export library_imports_a\n' | |
| 26 ' show somethingFromA\n' | |
| 27 ' show somethingFromBoth\n' | |
| 28 'export library_imports_b\n' | |
| 29 ' show somethingFromB\n', | |
| 30 stringifyDependencies(shown)); | |
| 31 } | |
| 32 | |
| 33 main() { | |
| 34 test(currentMirrorSystem()); | |
| 35 } | |
| OLD | NEW |