http://typescript.codeplex.com/workitem/645
At the moment it's not possible to call super getter/setter when overriding properties:
classA{private_property: string;getproperty(){returnthis._property;}setproperty(value: string){this._property=value}}classBextendsA{setproperty(value: string){super.property=value+" addition";}}
http://typescript.codeplex.com/workitem/645
At the moment it's not possible to call super getter/setter when overriding properties: