This intention replaces a single–quoted string `content`
to the equivalent, double-quoted "content"
.
Valid context
This intention is available on all single–quoted strings.
Transformation
Some parts of a single–quoted string need to be escaped to be valid in a double-quoted string. For example, '$noVariable'
is transformed into "\$noVariable"
.