Do not partially parse a file

This commit is contained in:
I-Al-Istannen 2020-03-31 15:31:36 +02:00
parent 300ef6e0c0
commit 813d891468

View file

@ -353,7 +353,7 @@ asmToken
fmap (uncurry TokenComment) (withSpan comment)
parsePhase1 :: Parser Phase1
parsePhase1 = many (space *> asmToken)
parsePhase1 = many (space *> asmToken) <* eof
-- | A small helper for visualizing the parse.
--