TypeScript/tests/baselines/reference/MemberFunctionDeclaration3_es6.js
2015-02-06 18:45:09 -08:00

13 lines
229 B
JavaScript

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