Allow keywords in named import/export syntax (#107)

This commit is contained in:
Alan Pierce
2018-05-13 04:26:12 -07:00
committed by Daniel Wirtz
parent e415377cda
commit 5ab81a00a1
8 changed files with 119 additions and 35 deletions

View File

@ -0,0 +1,7 @@
import {
default as get3
} from "./named-export-default";
export function getValue(): i32 {
return get3();
}