| 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 int get async { return 1; } | 5 library library_exports_shown; |
| 6 | 6 |
| 7 class A { | 7 export 'library_imports_a.dart' show somethingFromA, somethingFromBoth; |
| 8 async() => null; | 8 export 'library_imports_b.dart' show somethingFromB; |
| 9 } | |
| 10 | 9 |
| 11 main() { | 10 var somethingFromShown; |
| 12 var a = async; | |
| 13 var b = new A(); | |
| 14 var c = b.async(); | |
| 15 } | |
| OLD | NEW |