aboutsummaryrefslogtreecommitdiff
path: root/src/Language/Mili/Parser.hs
diff options
context:
space:
mode:
authorMarvin Borner2024-11-14 16:54:14 +0100
committerMarvin Borner2024-11-14 16:59:59 +0100
commit4a6378aa868e9c1d49fc5ad1576616933c913004 (patch)
treefb42733e3f774a9716a14b4332d96b503dab769a /src/Language/Mili/Parser.hs
parentd7bbded8b0aa3086692b2363076be48c2fbb5a33 (diff)
Basic reduction
Diffstat (limited to 'src/Language/Mili/Parser.hs')
-rw-r--r--src/Language/Mili/Parser.hs24
1 files changed, 10 insertions, 14 deletions
diff --git a/src/Language/Mili/Parser.hs b/src/Language/Mili/Parser.hs
index a733ade..958c0a8 100644
--- a/src/Language/Mili/Parser.hs
+++ b/src/Language/Mili/Parser.hs
@@ -77,7 +77,9 @@ toLevel n = do
-- | abstraction, entering increases the abstraction depth
abs :: Parser Term
-abs = between (startSymbol "[") (symbol "]") (Abs <$> (inc *> block <* dec))
+abs = between (startSymbol "[")
+ (symbol "]")
+ (gets (Abs <$> _depth) <*> (inc *> block <* dec))
where
inc = modify $ \r@(PS { _depth = d }) -> r { _depth = d + 1 }
dec = modify $ \r@(PS { _depth = d }) -> r { _depth = d - 1 }
@@ -98,28 +100,22 @@ rec :: Parser Term
rec = do
_ <- symbol "REC"
_ <- spaces
- _ <- symbol "("
- _ <- spaces
+ _ <- startSymbol "("
t <- term
_ <- spaces
- _ <- symbol ","
- _ <- spaces
+ _ <- startSymbol ","
t' <- nat
_ <- spaces
- _ <- symbol ")"
- _ <- spaces
- _ <- symbol ","
- _ <- spaces
+ _ <- startSymbol ")"
+ _ <- startSymbol ","
u <- term
_ <- spaces
- _ <- symbol ","
- _ <- spaces
+ _ <- startSymbol ","
v <- term
_ <- spaces
- _ <- symbol ","
- _ <- spaces
+ _ <- startSymbol ","
w <- term
- pure $ Rec (t, t') u v w -- TODO
+ pure $ Rec (t, t') u v w
-- | single identifier, directly parsed to corresponding term
def :: Parser Term