Skip to content
New issue

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

Multiline strings are not parsed correctly #531

Closed
veteran29 opened this issue Jun 26, 2023 · 0 comments · Fixed by #540
Closed

Multiline strings are not parsed correctly #531

veteran29 opened this issue Jun 26, 2023 · 0 comments · Fixed by #540
Labels
bug Something isn't working

Comments

@veteran29
Copy link
Contributor

Case 1

test = "\
    'multi';\
    'line';\
";

Output:

test = "\" \n "    'multi';\" \n "    'line';\" \n "";

Expected output:

test = "    'multi';    'line';";`

Case 2

Input:

/*       \/ space after \    */
test2 = "\ 
    'multi';\
    'line';\
";

Output:

test2 = "\ " \n "    'multi';\" \n "    'line';\" \n "";

Expected output:
<syntax error>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants