Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 foo; | 5 library libray_enumeration_deferred_loading; |
|
gbracha
2015/04/18 18:00:46
libray -> library
rmacnak
2015/04/20 17:21:04
Done.
| |
| 6 | 6 |
| 7 @MirrorsUsed(targets: const ["foo", "bar"]) | |
| 8 import 'dart:mirrors'; | 7 import 'dart:mirrors'; |
| 9 import 'typedef_library.dart' deferred as def; | 8 import 'package:expect/expect.dart'; |
| 9 import 'package:async_helper/async_helper.dart'; | |
| 10 | 10 |
| 11 import 'package:async_helper/async_helper.dart'; | 11 import 'other_library.dart' deferred as other; |
| 12 import 'package:expect/expect.dart'; | |
| 13 | 12 |
| 14 main() { | 13 main() { |
| 14 var ms = currentMirrorSystem(); | |
| 15 Expect.throws(() => ms.findLibrary(#test.other_library), | |
| 16 (e) => true, "should not be loaded yet"); | |
| 17 | |
| 15 asyncStart(); | 18 asyncStart(); |
| 16 def.loadLibrary().then((_) { | 19 other.loadLibrary().then((_) { |
| 17 var barLibrary = currentMirrorSystem().findLibrary(new Symbol("bar")); | |
| 18 var gTypedef = barLibrary.declarations[new Symbol("G")]; | |
| 19 Expect.equals("G", MirrorSystem.getName(gTypedef.simpleName)); | |
| 20 asyncEnd(); | 20 asyncEnd(); |
| 21 Expect.isNotNull(ms.findLibrary(#test.other_library)); | |
| 21 }); | 22 }); |
| 22 } | 23 } |
|
gbracha
2015/04/18 18:00:46
This is not exactly parallel to the other two (imp
rmacnak
2015/04/20 17:21:04
Filled in gap.
| |
| OLD | NEW |