OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // Dart test program importing with show/hide combinators. | 5 // Dart test program importing with show/hide combinators. |
6 | 6 |
7 library importCombinatorsTest; | 7 library importCombinatorsTest; |
| 8 import "package:expect/expect.dart"; |
8 import "import1_lib.dart" show hide, show hide ugly; | 9 import "import1_lib.dart" show hide, show hide ugly; |
9 import "export1_lib.dart"; | 10 import "export1_lib.dart"; |
10 import "dart:math" as M show E; | 11 import "dart:math" as M show E; |
11 | 12 |
12 part "import_combinators_part.dart"; | 13 part "import_combinators_part.dart"; |
13 | 14 |
14 main() { | 15 main() { |
15 Expect.equals("hide", hide); | 16 Expect.equals("hide", hide); |
16 Expect.equals("show", show); | 17 Expect.equals("show", show); |
17 // Top-level function from part, refers to imported variable show. | 18 // Top-level function from part, refers to imported variable show. |
18 Expect.equals("show", lookBehindCurtain()); | 19 Expect.equals("show", lookBehindCurtain()); |
19 // Top-level variable E from export1_lib.dart. | 20 // Top-level variable E from export1_lib.dart. |
20 Expect.equals("E", E); | 21 Expect.equals("E", E); |
21 // Top-level variable E imported from dart:math. | 22 // Top-level variable E imported from dart:math. |
22 Expect.equals(2.718281828459045, M.E); | 23 Expect.equals(2.718281828459045, M.E); |
23 // Constant LN2 from math library, re-exported by export1_lib.dart. | 24 // Constant LN2 from math library, re-exported by export1_lib.dart. |
24 Expect.equals(0.6931471805599453, LN2); | 25 Expect.equals(0.6931471805599453, LN2); |
25 } | 26 } |
OLD | NEW |