microsoft / TypeScript-TmLanguage

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

VSCode Syntax highlighting broken when using optional chaining in string templates #906

Closed semos closed 1 year ago

semos commented 2 years ago

TS and JS Grammar Extension version: 0.0.55 / latest

In vscode, syntax highlighting breaks when using optional chaining in string templates :

image

  const foo = `rawString_${obj.foo}`;

  const bar = `rawString_${obj?.bar}`;

  const baz = `BROKEN_HIGHLIGHTING`;
sheetalkamat commented 1 year ago

Doesnt repro:

image