TypeScript/tests/baselines/reference/quotedFunctionName1.js

13 lines
231 B
TypeScript

//// [quotedFunctionName1.ts]
class Test1 {
"prop1"() { }
}
//// [quotedFunctionName1.js]
var Test1 = (function () {
function Test1() {
}
Test1.prototype["prop1"] = function () { };
return Test1;
})();