core
core copied to clipboard
Translate properties to TypeScript accessors
Currently this.X with get() = x translates to get_X() { return this.x }.
Use TS accessor syntax instead for non-indexed .NET properties: get X() { return this.X}, similarly for setters.