TypeScript/tests/baselines/reference/classMethodWithKeywordName1.js

14 lines
218 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [classMethodWithKeywordName1.ts]
class C {
static try() {}
}
//// [classMethodWithKeywordName1.js]
var C = (function () {
function C() {
}
C.try = function () {
};
return C;
})();