File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 22
33Implementation of ` Lox ` interpreter as described in [ Crafting Interpreters] ( https://craftinginterpreters.com/ ) .
44
5- 1 . [ Scanning] ( Scanner.hs ) - [ Commentary] ( https://gdevanla.github.io/posts/crafting-interpreter-scanning.html )
5+ 1 . [ Scanning] ( src/ Scanner.hs) - [ Commentary] ( https://gdevanla.github.io/posts/crafting-interpreter-scanning.html )
66
77
88## Execute
Original file line number Diff line number Diff line change @@ -179,7 +179,6 @@ scanDouble = do
179179 void $ char ' .'
180180 secondPart <- Text.Parsec. many1 digit <* whitespace
181181 return $ NUMBER $ read $ Import. concat [firstPart, " ." , secondPart]
182-
183182-- -- https://stackoverflow.com/questions/24106314/parser-for-quoted-string-using-parsec
184183escape :: Parser String
185184escape = do
You can’t perform that action at this time.
0 commit comments