TypeScript/tests/baselines/reference/parserMemberFunctionDeclaration1.js

13 lines
244 B
TypeScript

//// [parserMemberFunctionDeclaration1.ts]
class C {
public public Foo() { }
}
//// [parserMemberFunctionDeclaration1.js]
var C = (function () {
function C() {
}
C.prototype.Foo = function () { };
return C;
})();