Fix parse issue with $ in []
Some checks failed
Publish Playground / build (push) Has been cancelled
Publish Playground / deploy (push) Has been cancelled

This commit is contained in:
2026-04-04 21:15:53 -07:00
parent 03ece3c480
commit 97c108b7cc

View File

@@ -104,7 +104,7 @@ listTypeExp = do
fc <- getPos fc <- getPos
symbol "[" symbol "["
-- many of these though -- many of these though
tms <- sepBy' (symbol ",") parseOp tms <- sepBy' (symbol ",") typeExpr
nilFC <- getPos nilFC <- getPos
symbol "]" symbol "]"
pure $ expandList nilFC tms pure $ expandList nilFC tms