From 32499638cef3c49ff686b19b5708d6b08712c526 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 16 Mar 2025 18:03:26 +0530 Subject: Refactor into cli and cljcc-compiler folders Pass all tests. Fix babashka tasks and build setup. Repl is behaving in unexpected ways, otherwise working as expected. --- cljcc-compiler/src/cljcc/analyze/core.cljc | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 cljcc-compiler/src/cljcc/analyze/core.cljc (limited to 'cljcc-compiler/src/cljcc/analyze/core.cljc') diff --git a/cljcc-compiler/src/cljcc/analyze/core.cljc b/cljcc-compiler/src/cljcc/analyze/core.cljc deleted file mode 100644 index 793b667..0000000 --- a/cljcc-compiler/src/cljcc/analyze/core.cljc +++ /dev/null @@ -1,10 +0,0 @@ -(ns cljcc.analyze.core - (:require [cljcc.analyze.resolve :as r] - [cljcc.analyze.label-loops :as l] - [cljcc.analyze.typecheck :as t])) - -(defn validate [program] - (-> program - r/resolve-program - l/label-loops - t/typecheck)) -- cgit v1.2.3