aboutsummaryrefslogtreecommitdiff
path: root/src/cljcc/analyze/core.clj
diff options
context:
space:
mode:
authorYour Name <agrawalshagun07@gmail.com>2025-03-16 02:00:40 +0530
committerYour Name <agrawalshagun07@gmail.com>2025-03-16 02:00:40 +0530
commit0321df3708cfa4d1440faf3f407611df85484b4b (patch)
tree8c23154afaf1afd78363eb0fa639edd5d8a32821 /src/cljcc/analyze/core.clj
parente458b2fadee1eaf0a6cf4ed4881da6f3f25acc21 (diff)
Refactor files to cljcc-compiler and cli tool.
Diffstat (limited to 'src/cljcc/analyze/core.clj')
-rw-r--r--src/cljcc/analyze/core.clj10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cljcc/analyze/core.clj b/src/cljcc/analyze/core.clj
deleted file mode 100644
index 793b667..0000000
--- a/src/cljcc/analyze/core.clj
+++ /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))