aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Parser.hs
diff options
context:
space:
mode:
authorMarvin Borner2023-03-12 00:03:51 +0100
committerMarvin Borner2023-03-12 00:03:51 +0100
commite789e11f8e478fe5987101424cf5c9c32cc6a29b (patch)
treef37f5a16a2337fe68d76ddd1982022b9b2a340a8 /src/Parser.hs
parentbc237aa79e64caf87ed9a51e41c284bbca51b176 (diff)
Added length&blc commands
Diffstat (limited to 'src/Parser.hs')
-rw-r--r--src/Parser.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Parser.hs b/src/Parser.hs
index d796682..392d4a6 100644
--- a/src/Parser.hs
+++ b/src/Parser.hs
@@ -269,6 +269,18 @@ parseTime = do
e <- parseExpression
pure $ Time e
+parseLength :: Parser Command
+parseLength = do
+ _ <- string ":length" <* sc <?> "length instruction"
+ e <- parseExpression
+ pure $ Length e
+
+parseBlc :: Parser Command
+parseBlc = do
+ _ <- string ":blc" <* sc <?> "blc instruction"
+ e <- parseExpression
+ pure $ Blc e
+
parseClearState :: Parser Command
parseClearState = do
_ <- string ":free" <?> "free instruction"
@@ -334,5 +346,7 @@ parseReplLine =
<|> (Commands . (: []) <$> try parseWatch)
<|> (Commands . (: []) <$> try parseImport)
<|> (Commands . (: []) <$> try parseTime)
+ <|> (Commands . (: []) <$> try parseLength)
+ <|> (Commands . (: []) <$> try parseBlc)
<|> (Commands . (: []) <$> try parseClearState)
<|> try parseEvaluate