Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // Dart test program importing with show/hide combinators. | |
| 6 | |
| 7 import "import1_lib.dart" show hide, show hide ugly; | |
|
siva
2012/09/24 18:28:51
Would have been better if you had:
import "import
hausner
2012/09/24 20:25:43
:-)
| |
| 8 | |
| 9 main() { | |
| 10 print(hide); | |
| 11 print(show); | |
| 12 } | |
| OLD | NEW |