mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-12 14:31:28 +00:00
Allow trailing commas in import and export statements (#114)
This commit is contained in:
committed by
Daniel Wirtz
parent
33b10e347b
commit
edf4aaa966
@ -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,
|
||||
};
|
||||
|
Reference in New Issue
Block a user