microsoft / TypeScript-TmLanguage

TextMate grammar files for TypeScript for VS Code, Sublime Text, and Atom.
MIT License
397 stars 125 forks source link

Wrong color in JSDoc when using extends from a class having multiple generic parameter #993

Open barsdeveloper opened 8 months ago

barsdeveloper commented 8 months ago

The color is wrong on the extends directive after the comma

/**
 * @extends Base<T, U>
 *///               ^ from here on
/**
 * @template T
 * @template U
 */
class Base {}

/**
 * @template T
 * @template U
 * @extends Base<T, U>
 */
class Derived extends Base {}