aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Parser.hs
diff options
context:
space:
mode:
authorMarvin Borner2023-11-06 18:53:58 +0100
committerMarvin Borner2023-11-06 18:53:58 +0100
commit0a6c4aed69622751058da16f297e5a8f8fe01a1b (patch)
treef0e12021e7243987288b70a91e338490e30223f0 /src/Parser.hs
parent27f0cbf21e01448245d54f7818582c741d8cdafa (diff)
Started unquote and improved quote
Diffstat (limited to 'src/Parser.hs')
-rw-r--r--src/Parser.hs19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/Parser.hs b/src/Parser.hs
index aee282b..57d6f58 100644
--- a/src/Parser.hs
+++ b/src/Parser.hs
@@ -42,9 +42,10 @@ mathematicalArrow = satisfy isMathematicalOperator
-- "'" can't be in special chars because of 'c' char notation and prefixation
-- "." can't be in special chars because of namespaced functions and UFCS syntax
+-- "," can't be in special chars because of unquote
specialChar :: Parser Char
specialChar =
- oneOf "!?*@,:;+-_#$%^&<>/\\|{}~="
+ oneOf "!?*@:;+-_#$%^&<>/\\|{}~="
<|> mathematicalOperator
<|> mathematicalArrow
@@ -177,6 +178,18 @@ parseMixfix = do
operatorAsMixfix = MixfixOperator . MixfixFunction <$> some mixfixSome
singletonAsMixfix = MixfixExpression <$> parseSingleton
+parseQuote :: Parser Expression
+parseQuote = do
+ _ <- char '`' <?> "quote start"
+ e <- parseSingleton
+ pure $ Quote e
+
+parseUnquote :: Parser Expression
+parseUnquote = do
+ _ <- char ',' <?> "unquote start"
+ e <- parseSingleton
+ pure $ Unquote e
+
parsePrefix :: Parser Expression
parsePrefix = do
p <- prefixOperator
@@ -189,7 +202,9 @@ parseSingleton =
parseBruijn
<|> try parseNumeral
<|> parseString
- <|> parseChar
+ <|> try parseChar
+ <|> parseQuote
+ <|> parseUnquote
<|> parseAbstraction
<|> try parseFunction
<|> parsePrefix