From 5af3af6b6c9aab601cc08335b5f05a488b55f4a9 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Tue, 3 Feb 2026 12:18:04 -0700 Subject: [PATCH] cleaning --- src/parser.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/parser.ts b/src/parser.ts index c2cd626..3ceb439 100644 --- a/src/parser.ts +++ b/src/parser.ts @@ -349,13 +349,9 @@ export class Parser { expr = { kind: 'record-access', record: expr, field }; } } else if (this.current().kind === 'open-brace') { - // if (expr.kind === 'constructor') { - // Function / constructor application - const record = this.parsePrimary(); - expr = { kind: 'apply', func: expr, args: [record] }; - // } else { - // break; - // } + // Function / constructor application + const record = this.parsePrimary(); + expr = { kind: 'apply', func: expr, args: [record] }; } else { break; }