Allow trailing commas in import and export statements (#114)

This commit is contained in:
Alan Pierce
2018-05-22 03:08:01 -07:00
committed by Daniel Wirtz
parent 33b10e347b
commit edf4aaa966
4 changed files with 52 additions and 22 deletions

View File

@ -1,3 +1,8 @@
import {
a,
b,
} from "c";
enum Foo {
A,
B,
@ -31,3 +36,8 @@ export function compute(): i32 {
2,
);
}
export {
a,
b,
};