diff options
author | Marvin Borner | 2024-11-13 22:49:41 +0100 |
---|---|---|
committer | Marvin Borner | 2024-11-13 22:51:32 +0100 |
commit | 6ed4e70af76bf29297dc872dc7501e70e20ad230 (patch) | |
tree | d523dc77c8967c8923aa0942fba031f837d9002d /src/Language/Mili/Parser.hs | |
parent | 5a178cc41e7e26129fcdb617604071625a5b5779 (diff) |
Initial bounded iteration and unbounded minimization
Diffstat (limited to 'src/Language/Mili/Parser.hs')
-rw-r--r-- | src/Language/Mili/Parser.hs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Language/Mili/Parser.hs b/src/Language/Mili/Parser.hs index fccd0f1..f9c52f3 100644 --- a/src/Language/Mili/Parser.hs +++ b/src/Language/Mili/Parser.hs @@ -21,7 +21,7 @@ import qualified Text.Megaparsec.Char.Lexer as L type Parser = ParsecT Void Text (State ParserState) data ParserState = PS - { _map :: HashMap Text Term + { _map :: HashMap Text (Int, Term) , _depth :: Int } @@ -73,8 +73,8 @@ idx = do -- | single identifier, directly parsed to corresponding term def :: Parser Term def = do - name <- identifier - PS { _map = names } <- get + name <- identifier + PS { _map = names, _depth = d1 } <- get case M.lookup name names of Just (d2, t) -> pure $ shift (d1 - d2) t Nothing -> fail $ T.unpack name <> " is not in scope" @@ -98,7 +98,8 @@ definition = do _ <- startSymbol "=" _ <- spaces body <- term - modify $ \r@(PS { _map = m }) -> r { _map = M.insert name body m } + modify $ \r@(PS { _map = m, _depth = d }) -> + r { _map = M.insert name (d, body) m } -- | many definitions, seperated by newline or semicolon definitions :: Parser [()] |