aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Parser.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-08-17 18:09:11 +0200
committerMarvin Borner2022-08-17 18:09:11 +0200
commit266286d108b8304efc67d64f47c1ee9d8d4b17c9 (patch)
treec1444e9b7a3c4c5ad9a6fb6bfb50903bb8a641ed /src/Parser.hs
parentfee84dce1ed2ac8448b93b7bfaff934bd3c72041 (diff)
Added input instruction
Diffstat (limited to 'src/Parser.hs')
-rw-r--r--src/Parser.hs23
1 files changed, 17 insertions, 6 deletions
diff --git a/src/Parser.hs b/src/Parser.hs
index 9a4a793..1b3ac41 100644
--- a/src/Parser.hs
+++ b/src/Parser.hs
@@ -18,7 +18,7 @@ sc :: Parser ()
sc = void $ char ' '
specialChar :: Parser Char
-specialChar = oneOf "!?*@.:;+-_#$%^&<>/\\|~='"
+specialChar = oneOf "!?*@.:;+-_#$%^&<>/\\|~="
infixOperator :: Parser String
infixOperator = some specialChar
@@ -29,7 +29,7 @@ prefixOperator = some specialChar
-- def identifier disallows the import prefix dots
defIdentifier :: Parser String
defIdentifier =
- ((:) <$> letterChar <*> many (alphaNumChar <|> specialChar))
+ ((:) <$> letterChar <*> many (alphaNumChar <|> specialChar <|> char '\''))
<|> ((\l i r -> [l] ++ i ++ [r]) <$> char '(' <*> infixOperator <*> char ')'
)
<|> ((\p i -> p ++ [i]) <$> prefixOperator <*> char '(')
@@ -38,7 +38,10 @@ defIdentifier =
-- TODO: write as extension to defIdentifier
identifier :: Parser String
identifier =
- ((:) <$> letterChar <*> many (alphaNumChar <|> specialChar <|> char '.'))
+ ((:) <$> letterChar <*> many (alphaNumChar <|> specialChar <|> oneOf ".\'"))
+ <|> ((\l i r -> [l] ++ i ++ [r]) <$> char '(' <*> infixOperator <*> char ')'
+ )
+ <|> ((\p i -> p ++ [i]) <$> prefixOperator <*> char '(')
<?> "identifier"
namespace :: Parser String
@@ -129,9 +132,9 @@ parseSingleton =
<|> parseString
<|> parseChar
<|> parseAbstraction
+ <|> try parseVariable
<|> try (parens parseInfix <?> "enclosed infix expr")
<|> (parens parseApplication <?> "enclosed application")
- <|> parseVariable
<|> parsePrefix
parseExpression :: Parser Expression
@@ -173,15 +176,22 @@ parseComment = do
parseImport :: Parser Instruction
parseImport = do
inp <- getInput
- _ <- string ":import " <?> "import"
+ _ <- string ":import " <?> "import instruction"
path <- importPath
ns <- (try $ sc *> namespace) <|> (eof >> return "")
pure $ ContextualInstruction (Import (path ++ ".bruijn") ns) inp
+parseInput :: Parser Instruction
+parseInput = do
+ inp <- getInput
+ _ <- string ":input " <?> "input instruction"
+ path <- importPath
+ pure $ ContextualInstruction (Input $ path ++ ".bruijn") inp
+
parsePrint :: Parser Instruction
parsePrint = do
inp <- getInput
- _ <- string ":print " <?> "print"
+ _ <- string ":print " <?> "print instruction"
e <- parseExpression
pure $ ContextualInstruction (Evaluate e) inp
@@ -209,6 +219,7 @@ parseDefBlock lvl =
*> ( try (parseDefine lvl)
<|> try parsePrint
<|> try parseImport
+ <|> try parseInput
<|> try parseTest
)