TypeScript/tests/baselines/reference/staticAndNonStaticPropertiesSameName.js

20 lines
329 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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;
})();