TypeScript/tests/baselines/reference/classMethodWithKeywordName1.js

13 lines
213 B
TypeScript

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