On 2/27/2014 2:19 AM, Timothee Cour wrote:
* import all except specified symbols:
import 'package:lib2/lib2.dart' hide foo; // Import all names EXCEPT foo.

As a general rule, negation features are frequently misunderstood, our brains tend to just not see the negation. One should positively import names, not negatively not import some.

And there's the maintenance problem - what did the importer mean to do when the imported module adds a 'bar' name?

Reply via email to