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,5 @@
function get3(): i32 {
return 3;
}
export {get3 as default};