aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Parser.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Parser.hs')
-rw-r--r--src/Parser.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Parser.hs b/src/Parser.hs
index b572f9a..b82a266 100644
--- a/src/Parser.hs
+++ b/src/Parser.hs
@@ -289,6 +289,12 @@ parseInput = do
path <- importPath
pure $ Input $ path ++ ".bruijn"
+parseWatch :: Parser Command
+parseWatch = do
+ _ <- string ":watch" <* sc <?> "watch instruction"
+ path <- importPath
+ pure $ Watch $ path ++ ".bruijn"
+
parseTest :: Parser Command
parseTest = do
_ <- string ":test" <* sc <?> "test"
@@ -328,6 +334,7 @@ parseReplLine =
try parseReplDefine -- TODO: This is kinda hacky
<|> ((Commands . (: [])) <$> try parseTest)
<|> ((Commands . (: [])) <$> try parseInput)
+ <|> ((Commands . (: [])) <$> try parseWatch)
<|> ((Commands . (: [])) <$> try parseImport)
<|> ((Commands . (: [])) <$> try parseTime)
<|> ((Commands . (: [])) <$> try parseClearState)