TypeScript/tests/baselines/reference/commentOnClassMethod1.js

21 lines
375 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [commentOnClassMethod1.ts]
class WebControls {
/**
* Render a control
*/
createControl(): any {
}
}
//// [commentOnClassMethod1.js]
var WebControls = (function () {
function WebControls() {
}
/**
* Render a control
*/
2014-07-13 01:04:16 +02:00
WebControls.prototype.createControl = function () {
};
return WebControls;
})();