From 05611820413a6f691da269e631f4359185416155 Mon Sep 17 00:00:00 2001 From: Shagun Agrawal Date: Fri, 16 Aug 2024 23:26:10 +0530 Subject: Switch to hand made parser, refactor asts to adjust change Switch to hand made recursive descent parser. Remove instaparse from dependencies. --- src/cljcc/cljcc.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cljcc/cljcc.clj') diff --git a/src/cljcc/cljcc.clj b/src/cljcc/cljcc.clj index b76fcd5..2c9643e 100644 --- a/src/cljcc/cljcc.clj +++ b/src/cljcc/cljcc.clj @@ -41,4 +41,4 @@ (d/run file-path options) (exit 0 "Successfully executed.") (catch Exception e - (exit 1 (ex-message e))))))) + (exit 1 (ex-message e) e)))))) -- cgit v1.2.3