//// [parserGetAccessorWithTypeParameters1.ts] class C { get foo() { } } //// [parserGetAccessorWithTypeParameters1.js] var C = (function () { function C() { } Object.defineProperty(C.prototype, "foo", { get: function () { }, enumerable: true, configurable: true }); return C; })();