Skip to content

JSDoc comment no more available (JS Doc Completion setting no more working) #60335

@tiusnonos

Description

@tiusnonos
  • VSCode Version: 1.28.0
  • OS Version: Windows 7 (x64)

Steps to Reproduce:

  1. Create a JS file and define a MyClass class.
  2. Add the following function to the class: MyClass.prototype.myFunction = function (param1, param2) {};
  3. Place the cursor on line on the top of that function
  4. Type /** and press enter: an empty JSdoc is created

    /**
     * 
     */
    MyClass.prototype.myFunction  = function (param1, param2) {
    };
  1. 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

Metadata

Metadata

Assignees

Labels

javascriptJavaScript support issuesupstreamIssue identified as 'upstream' component related (exists outside of VS Code)

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions