TypeScript/tests/baselines/reference/parserMemberFunctionDeclaration2.js

13 lines
234 B
TypeScript

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