Input:
class Test {
public foo = this.bar;
constructor(public bar: string) {}
}
Current Result:
-- ...
function Test.prototype.____constructor(self, bar)
self.foo = self.bar
self.bar = bar
end
Expected Result:
-- ...
function Test.prototype.____constructor(self, bar)
self.bar = bar
self.foo = self.bar
end