TypeScript/tests/baselines/reference/classMethodWithKeywordName1.js
2014-07-12 17:30:19 -07:00

14 lines
218 B
JavaScript

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