From 77c71f5aedd9598021b14c796e0ea540e8fddf57 Mon Sep 17 00:00:00 2001 From: Shagun Agrawal Date: Mon, 16 Dec 2024 22:01:02 +0530 Subject: Add typechecker phase for signed, unsigned --- src/cljcc/parser.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/cljcc/parser.clj') diff --git a/src/cljcc/parser.clj b/src/cljcc/parser.clj index 37d1c39..6ab3373 100644 --- a/src/cljcc/parser.clj +++ b/src/cljcc/parser.clj @@ -519,7 +519,8 @@ (defn- parse-program [tokens] (let [[declarations tokens] (parse-repeatedly tokens parse-declaration :eof) _ (expect :eof tokens) - _ (m/coerce #'s/Program declarations)] + ;_ (m/coerce #'s/Program declarations) + ] declarations)) (defn parse [tokens] -- cgit v1.2.3