TypeScript/tests/baselines/reference/staticAndNonStaticPropertiesSameName.js

18 lines
319 B
TypeScript

//// [staticAndNonStaticPropertiesSameName.ts]
class C {
x: number;
static x: number;
f() { }
static f() { }
}
//// [staticAndNonStaticPropertiesSameName.js]
var C = (function () {
function C() {
}
C.prototype.f = function () { };
C.f = function () { };
return C;
})();