rc #13

Merged
crumbtoo merged 196 commits from dev into main 2024-02-13 13:22:23 -07:00
Showing only changes of commit 8aa9bb843f - Show all commits

View File

@@ -47,7 +47,7 @@ symbol :: Text -> Parser Text
symbol = L.symbol sc
sc :: Parser ()
sc = L.space space1 (void lineComment) (void blockComment)
sc = L.space hspace1 (void lineComment) (void blockComment)
-- TODO: return comment text
-- TODO: '---' should not start a comment
@@ -156,3 +156,7 @@ data Partial a = E (RlpExprF Name a)
type PartialExpr' = Y Partial
----------------------------------------------------------------------------------