Reports double-quoted string literals that can be converted into raw string literals and raw string literals that can be converted to double-quoted string literals.

Example:


  var s = "Hello\n   \"World\""

After the quick fix is applied:


  var s = `Hello
   "World"`

There are two notes that you should take into account while converting double-quoted strings to raw strings: