| 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 import 'package:expect/expect.dart'; |
| 5 import 'package:async_helper/async_helper.dart'; | 6 import 'package:async_helper/async_helper.dart'; |
| 6 import 'package:expect/expect.dart'; | |
| 7 | 7 |
| 8 import 'dart:async'; | 8 // This library contains a member loadLibrary. |
| 9 // Check that we shadow this member. |
| 10 import "deferred_closurize_load_library_lib.dart" deferred as lib; |
| 9 | 11 |
| 10 @lazy import 'deferred_class_library2.dart' as lib; | 12 void main() { |
| 11 | 13 var x = lib.loadLibrary; |
| 12 const lazy = const DeferredLibrary('deferred_class_library2'); | |
| 13 | |
| 14 main() { | |
| 15 asyncStart(); | 14 asyncStart(); |
| 16 lazy.load().then((bool didLoad) { | 15 x().then((_) { |
| 17 Expect.isTrue(didLoad); | 16 Expect.isTrue(lib.trueVar); |
| 18 Expect.equals(499, lib.C1.value); | |
| 19 asyncEnd(); | 17 asyncEnd(); |
| 20 }); | 18 }); |
| 21 } | 19 } |
| OLD | NEW |