From 97c108b7cc10885b0c0dac64fa10c8df1e6d5f40 Mon Sep 17 00:00:00 2001 From: Steve Dunham Date: Sat, 4 Apr 2026 21:15:53 -0700 Subject: [PATCH] Fix parse issue with `$` in `[]` --- src/Lib/Parser.newt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lib/Parser.newt b/src/Lib/Parser.newt index 854ff2a..4840a6f 100644 --- a/src/Lib/Parser.newt +++ b/src/Lib/Parser.newt @@ -104,7 +104,7 @@ listTypeExp = do fc <- getPos symbol "[" -- many of these though - tms <- sepBy' (symbol ",") parseOp + tms <- sepBy' (symbol ",") typeExpr nilFC <- getPos symbol "]" pure $ expandList nilFC tms