summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2023-02-05 20:46:04 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2023-02-05 20:46:04 +0100
commit4603b8e9b1d2b99b8286c82d55ac18ba00fe7331 (patch)
tree3041c6fde414555d1f046cc8fd4a5d999ed883bf /src
parent30b2adf6f0caa11c5d11ff712290c0a60c37afde (diff)
List expression type
Diffstat (limited to 'src')
-rw-r--r--src/Parser.hs14
-rw-r--r--src/Test.hs5
2 files changed, 19 insertions, 0 deletions
diff --git a/src/Parser.hs b/src/Parser.hs
index b67ce55..51fc0f0 100644
--- a/src/Parser.hs
+++ b/src/Parser.hs
@@ -208,6 +208,19 @@ regex = label "regular expression" $ lexeme $ do
_ <- eval expr -- test regex parsing with empty variables
return expr
+list :: TestParser SomeExpr
+list = label "list" $ do
+ symbol "["
+ SomeExpr x <- someExpr
+ choice
+ [do symbol "]"
+ return $ SomeExpr $ UnOp (:[]) x
+ ,do symbol ","
+ xs <- listOf typedExpr
+ symbol "]"
+ return $ SomeExpr $ foldr (BinOp (:)) (Literal []) (x:xs)
+ ]
+
data SomeExpr = forall a. ExprType a => SomeExpr (Expr a)
data SomeUnOp = forall a b. (ExprType a, ExprType b) => SomeUnOp (a -> b)
@@ -310,6 +323,7 @@ someExpr = join inner <?> "expression"
[ return <$> numberLiteral
, return . SomeExpr <$> quotedString
, return . SomeExpr <$> regex
+ , return <$> list
]
variable = label "variable" $ do
diff --git a/src/Test.hs b/src/Test.hs
index b2644b6..b6a85ae 100644
--- a/src/Test.hs
+++ b/src/Test.hs
@@ -96,6 +96,11 @@ instance ExprType Regex where
textExprValue _ = T.pack "<regex>"
emptyVarValue = either error id $ regexCompile T.empty
+instance ExprType a => ExprType [a] where
+ textExprType _ = "[" <> textExprType @a Proxy <> "]"
+ textExprValue x = "[" <> T.intercalate ", " (map textExprValue x) <> "]"
+ emptyVarValue = []
+
data SomeVarValue = forall a. ExprType a => SomeVarValue a
data RecordSelector a = forall b. ExprType b => RecordSelector (a -> b)