Hi,
The code generator generates reserved words as arguments for methods.
table Test {
delete: string; // <- this will produce non working .ts code
symbol: string; // <- this also did not work
constructor: string; // <- this works (its an 'contextual keyword')
}
root_type Test
I will make an pull request to fix this issue.