We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following incorrect output is produced:
single_quote_to_double_quote: true
input: local escapedQuote = '\"'
local escapedQuote = '\"'
output (invalid lua): local escapedQuote = "\\""
local escapedQuote = "\\""
should be: local escapedQuote = "\""
local escapedQuote = "\""
double_quote_to_single_quote: true
input: local escapedQuote = "\'"
local escapedQuote = "\'"
output (invalid lua): local escapedQuote = '\\''
local escapedQuote = '\\''
should be: local escapedQuote = '\''
local escapedQuote = '\''
The text was updated successfully, but these errors were encountered:
Fix incorrect escape character handling for issue Koihik#274. Added a…
d7264fb
… couple more tests.
Merge pull request #275 from doug1234/EscapedQuotes
29afe10
Fix incorrect escape character handling for issue #274
No branches or pull requests
The following incorrect output is produced:
single_quote_to_double_quote: true
input:
local escapedQuote = '\"'
output (invalid lua):
local escapedQuote = "\\""
should be:
local escapedQuote = "\""
double_quote_to_single_quote: true
input:
local escapedQuote = "\'"
output (invalid lua):
local escapedQuote = '\\''
should be:
local escapedQuote = '\''
The text was updated successfully, but these errors were encountered: