vscode-docthis
vscode-docthis copied to clipboard
Cannot produce documentation for `*** = function(a, b) { } `
Code:
SomeObject.prototype.method = function(a, b) {
// ...
};
Expected:
/**
*
* @param {*} a
* @param {*} b
*/
SomeObject.prototype.method = function(a, b) {
// ...
};
Actually get an ERROR.
Sorry! 'Document This' wasn't able to produce documentation at the current position.
+1, would love if this could be done for fat arrow functions, or any help in getting it into the next version
+1