TypeScript/tests/baselines/reference/MemberFunctionDeclaration2_es6.js

13 lines
234 B
TypeScript

//// [MemberFunctionDeclaration2_es6.ts]
class C {
public * foo() { }
}
//// [MemberFunctionDeclaration2_es6.js]
var C = (function () {
function C() {
}
C.prototype.foo = function () { };
return C;
})();