TypeScript/tests/baselines/reference/staticPrototypeProperty.js
2015-02-06 18:45:09 -08:00

22 lines
332 B
JavaScript

//// [staticPrototypeProperty.ts]
class C {
static prototype() { }
}
class C2 {
static prototype;
}
//// [staticPrototypeProperty.js]
var C = (function () {
function C() {
}
C.prototype = function () { };
return C;
})();
var C2 = (function () {
function C2() {
}
return C2;
})();