fix default import generation

This commit is contained in:
Sebastian McKenzie
2014-12-10 23:18:23 +11:00
parent 8ffd2e843f
commit 01934b6960
2 changed files with 12 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import "foo";
import foo from "foo";
import { default as foo } from "foo";
import foo from "foo";
import * as foo from "foo";
import foo, { baz as xyz } from "foo";
import { bar } from "foo";