currently this can't parse: ```ts interface IFoo { a: i32, // comma b: i32, // comma } ``` or mixed: ```ts interface IFoo { a: i32; b: i32, // comma c: i32; } ``` only `;` supports for now