TypeScript/tests/baselines/reference/classMethodWithKeywordName1.js

13 lines
213 B
TypeScript
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 () { };
2014-07-13 01:04:16 +02:00
return C;
})();