Fix parsing of imports with module string name in flow plugin (#12224)

This commit is contained in:
Sosuke Suzuki
2020-10-21 06:46:12 +09:00
committed by GitHub
parent 136bf231ea
commit f1bc314c79
10 changed files with 242 additions and 5 deletions

View File

@@ -0,0 +1,2 @@
import { "foo" as bar, "default" as qux } from "module-a";
export * as "foo", { default as "quux" } from "module-b";