Skip to content

The default template parameter JSDoc annotation is not highlighted #1046

Open
@mykola-mokhnach

Description

@mykola-mokhnach

Does this issue occur when all extensions are disabled?: Yes/No

  • VS Code Version: 1.97.2
  • OS Version: macOS 15.2

Steps to Reproduce:

  1. Describe a simple javascript class:
export class SubProcess {
}
  1. Add template with default value JSDoc annotation to this class:
/**
 * @template [TSubProcessOptions={}]
 */
export class SubProcess {
}

Actual result:
The above JSDoc value is not highlighted properly

Expected result:
The above JSDoc value must be highlighted properly same way as the below fragment works (SubProcessOptions is an interface defined elsewhere):

/**
 * @template {SubProcessOptions} TSubProcessOptions
 */
export class SubProcess {
}

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions