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

13 lines
213 B
JavaScript

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