- VSCode Version: 1.28.0
- OS Version: Windows 7 (x64)
Steps to Reproduce:
- Create a JS file and define a MyClass class.
- Add the following function to the class: MyClass.prototype.myFunction = function (param1, param2) {};
- Place the cursor on line on the top of that function
- Type /** and press enter: an empty JSdoc is created
/**
*
*/
MyClass.prototype.myFunction = function (param1, param2) {
};
- Previous behavior: the following JSdoc was created:
/**
*
* @param {*} param1
* @param {*} param2
*/
MyClass.prototype.myFunction = function (param1, param2) {
};
This issue happen with no extension and no user or workspace settings.
Does this issue occur when all extensions are disabled?: Yes
Steps to Reproduce:
This issue happen with no extension and no user or workspace settings.
Does this issue occur when all extensions are disabled?: Yes