Open
Description
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:
- Describe a simple javascript class:
export class SubProcess {
}
- 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