fix(transpiler/dart): re-exporting only some bindings

```
export {Foo, Bar} from ‘./foo’;
==>
export ‘./foo’ show Foo, Bar;
```
This commit is contained in:
Vojta Jina
2014-11-10 10:40:07 -08:00
parent 7a70f8f92d
commit c5153175b6
4 changed files with 45 additions and 6 deletions

View File

@ -0,0 +1,3 @@
export var Bar1 = 'BAR1';
export var Bar2 = 'BAR2';
export function Bar3() {}