Need to support escape characters for strings. Escapes are needed so a string can include quotation marks (without ending the string) and parenthesis (without being interpreted as a variable). Escaped strings must
Still be interpreted as a string
Not trigger the behavior of the escaped character (start/end a string, interpret as a variable)
Remove the escape char when rendering or comparing. A string like "\"quote\"" must be equal when compared to some "quote" string
Escapes should look like this - "this is some string with an escaped \" \(quotation mark\)".
Need to support escape characters for strings. Escapes are needed so a string can include quotation marks (without ending the string) and parenthesis (without being interpreted as a variable). Escaped strings must
"\"quote\""
must be equal when compared to some"quote"
stringEscapes should look like this -
"this is some string with an escaped \" \(quotation mark\)"
.