// Please include a code snippet that demonstrates the issue
String.raw`--some-flag=C:\Some\Windows\Path` // It looks like the first letter of each dir is being escaped
String.raw`"This is\nJSON text\u2757"` // It looks like '\n' is being escaped
Example of how it looks in VSCode
Since String.raw is an EcmaScript standard, it's probably ideal that the grammar shows those string tokens without any escape tokens.
Important to note that backslashes shouldn't be ignored in the pattern, for example:
JavaScript and TypeScript Nightly version:
Code
Example of how it looks in VSCode
Since
String.raw
is an EcmaScript standard, it's probably ideal that the grammar shows those string tokens without any escape tokens.Important to note that backslashes shouldn't be ignored in the pattern, for example: