TypeScript/tests/baselines/reference/commentOnClassMethod1.js
2014-08-14 06:21:30 -07:00

20 lines
373 B
JavaScript

//// [commentOnClassMethod1.ts]
class WebControls {
/**
* Render a control
*/
createControl(): any {
}
}
//// [commentOnClassMethod1.js]
var WebControls = (function () {
function WebControls() {
}
/**
* Render a control
*/
WebControls.prototype.createControl = function () {
};
return WebControls;
})();