From 39b6930e14cfda58fd066805f5da447c685ab67f Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 16 Mar 2025 02:01:52 +0530 Subject: Rename all compiler files to cljc. --- cljcc-compiler/src/cljcc/analyze/core.cljc | 10 ++++++++++ 1 file changed, 10 insertions(+) create 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 new file mode 100644 index 0000000..793b667 --- /dev/null +++ b/cljcc-compiler/src/cljcc/analyze/core.cljc @@ -0,0 +1,10 @@ +(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