aboutsummaryrefslogtreecommitdiff
path: root/cljcc-compiler/src/cljcc/analyze
diff options
context:
space:
mode:
authorYour Name <agrawalshagun07@gmail.com>2025-03-16 18:03:26 +0530
committerYour Name <agrawalshagun07@gmail.com>2025-03-16 18:03:26 +0530
commit32499638cef3c49ff686b19b5708d6b08712c526 (patch)
tree31f09287602d243b22660fe455e5174bdcc280b4 /cljcc-compiler/src/cljcc/analyze
parent277319fa392f5ee9f21eedf2c4d224739f045690 (diff)
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.
Diffstat (limited to 'cljcc-compiler/src/cljcc/analyze')
-rw-r--r--cljcc-compiler/src/cljcc/analyze/core.clj (renamed from cljcc-compiler/src/cljcc/analyze/core.cljc)0
-rw-r--r--cljcc-compiler/src/cljcc/analyze/label_loops.clj (renamed from cljcc-compiler/src/cljcc/analyze/label_loops.cljc)2
-rw-r--r--cljcc-compiler/src/cljcc/analyze/resolve.clj (renamed from cljcc-compiler/src/cljcc/analyze/resolve.cljc)2
-rw-r--r--cljcc-compiler/src/cljcc/analyze/typecheck.clj (renamed from cljcc-compiler/src/cljcc/analyze/typecheck.cljc)2
4 files changed, 3 insertions, 3 deletions
diff --git a/cljcc-compiler/src/cljcc/analyze/core.cljc b/cljcc-compiler/src/cljcc/analyze/core.clj
index 793b667..793b667 100644
--- a/cljcc-compiler/src/cljcc/analyze/core.cljc
+++ b/cljcc-compiler/src/cljcc/analyze/core.clj
diff --git a/cljcc-compiler/src/cljcc/analyze/label_loops.cljc b/cljcc-compiler/src/cljcc/analyze/label_loops.clj
index 56fffc9..152e696 100644
--- a/cljcc-compiler/src/cljcc/analyze/label_loops.cljc
+++ b/cljcc-compiler/src/cljcc/analyze/label_loops.clj
@@ -1,6 +1,6 @@
(ns cljcc.analyze.label-loops
(:require [cljcc.parser :as p]
- [cljcc.exception :as exc]
+ [cljcc.core.exception :as exc]
[cljcc.analyze.resolve :as r]
[cljcc.schema :as s]
[cljcc.util :as util]
diff --git a/cljcc-compiler/src/cljcc/analyze/resolve.cljc b/cljcc-compiler/src/cljcc/analyze/resolve.clj
index 9f09333..7db16b6 100644
--- a/cljcc-compiler/src/cljcc/analyze/resolve.cljc
+++ b/cljcc-compiler/src/cljcc/analyze/resolve.clj
@@ -1,5 +1,5 @@
(ns cljcc.analyze.resolve
- (:require [cljcc.exception :as exc]
+ (:require [cljcc.core.exception :as exc]
[cljcc.parser :as p]
[malli.dev.pretty :as pretty]
[cljcc.schema :as s]
diff --git a/cljcc-compiler/src/cljcc/analyze/typecheck.cljc b/cljcc-compiler/src/cljcc/analyze/typecheck.clj
index d1e79dc..4d6843f 100644
--- a/cljcc-compiler/src/cljcc/analyze/typecheck.cljc
+++ b/cljcc-compiler/src/cljcc/analyze/typecheck.clj
@@ -8,7 +8,7 @@
[clojure.core.match :refer [match]]
[cljcc.analyze.resolve :as r]
[cljcc.analyze.label-loops :as l]
- [cljcc.exception :as exc]
+ [cljcc.core.exception :as exc]
[cljcc.util :as u]))
(declare typecheck-block typecheck-declaration to-static-init)