fix(traceur): Fix a couple of unsupported or incorrect tests.

This commit is contained in:
Martin Probst
2015-04-03 11:54:56 -07:00
parent 17e8857efc
commit 3285ffba16
3 changed files with 2 additions and 16 deletions

View File

@ -1,10 +1,6 @@
import {Baz} from './baz';
import {Bar1} from './bar';
export {Baz} from './baz';
var localVar = true;
export {Baz, localVar, Bar1};
// Will become:
// export {Baz} from './baz';
// export {Bar1} from './bar';