TypeScript/tests/baselines/reference/typeOfPrototype.js

18 lines
306 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [typeOfPrototype.ts]
class Foo {
bar = 3;
static bar = '';
}
Foo.prototype.bar = undefined; // Should be OK
//// [typeOfPrototype.js]
var Foo = (function () {
function Foo() {
this.bar = 3;
}
Foo.bar = '';
return Foo;
})();
Foo.prototype.bar = undefined;