TypeScript/tests/baselines/reference/classExpressionWithStaticProperties2.js

11 lines
230 B
TypeScript
Raw Normal View History

2015-04-03 02:50:11 +02:00
//// [classExpressionWithStaticProperties2.ts]
var v = class C { static a = 1; static b };
//// [classExpressionWithStaticProperties2.js]
var v = (function () {
function C() {
}
C.a = 1;
return C;
})();