| 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 @A(const B()) | 5 @A(const B()) |
| 6 library main; | 6 library main; |
| 7 | 7 |
| 8 @B() | 8 @B() |
| 9 import 'package:async_helper/async_helper.dart'; | 9 import 'package:async_helper/async_helper.dart'; |
| 10 import 'package:expect/expect.dart'; | 10 import 'package:expect/expect.dart'; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 void main() { | 37 void main() { |
| 38 asyncStart(); | 38 asyncStart(); |
| 39 lib1.loadLibrary().then((_) { | 39 lib1.loadLibrary().then((_) { |
| 40 Expect.equals("ABCD", lib1.foo()); | 40 Expect.equals("ABCD", lib1.foo()); |
| 41 new C(); | 41 new C(); |
| 42 new D(); | 42 new D(); |
| 43 asyncEnd(); | 43 asyncEnd(); |
| 44 }); | 44 }); |
| 45 } | 45 } |
| OLD | NEW |