TypeScript/tests/baselines/reference/parserMemberVariableDeclaration2.js

12 lines
197 B
JavaScript

//// [parserMemberVariableDeclaration2.ts]
class C {
static static Foo;
}
//// [parserMemberVariableDeclaration2.js]
var C = (function () {
function C() {
}
return C;
})();