TypeScript/tests/baselines/reference/staticAndNonStaticPropertiesSameName.js

18 lines
319 B
TypeScript
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 () { };
2014-07-13 01:04:16 +02:00
return C;
})();