Skip to content
Snippets Groups Projects
Commit 327564ba authored by Alexander Kaznacheev's avatar Alexander Kaznacheev
Browse files

fix MultilineStrings

parent 04cb46ce
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,6 @@ convertMultilineStrings s = go s WaitingForString 0
'\n':'"':'"':'"':s -> '"':'\n' : go s WaitingForString 0
'"':s -> '\\':'"' : go s state charCnt
'\\':s -> '\\':'\\' : go s state charCnt
-- '\n':s -> '\\':'n':'"':'\n':' ':'+':'+':' ':'"' : go s state charCnt
'\n':s -> "\\n\"\n" ++ replicate charCnt ' ' ++ " ++ \"" ++ go s state charCnt
c:s -> c : go s state charCnt
where
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment