TypeScript/tests/baselines/reference/MemberFunctionDeclaration1_es6.js

14 lines
231 B
TypeScript
Raw Normal View History

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