aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Parser/Parser.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/VeriFuzz/Parser/Parser.hs')
-rw-r--r--src/VeriFuzz/Parser/Parser.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/VeriFuzz/Parser/Parser.hs b/src/VeriFuzz/Parser/Parser.hs
index 5a1d163..4ba36e2 100644
--- a/src/VeriFuzz/Parser/Parser.hs
+++ b/src/VeriFuzz/Parser/Parser.hs
@@ -125,7 +125,8 @@ systemFunc s = satisfy' matchId
parseFunction :: Parser Function
parseFunction =
- systemFunc "unsigned" $> UnSignedFunc <|> systemFunc "signed" $> SignedFunc
+ systemFunc "$unsigned" $> UnSignedFunc
+ <|> systemFunc "$signed" $> SignedFunc
parseFun :: Parser Expr
parseFun = do