aboutsummaryrefslogtreecommitdiff
path: root/luxc/src/lux/repl.clj
diff options
context:
space:
mode:
authorEduardo Julian2017-02-19 23:44:03 -0400
committerEduardo Julian2017-02-19 23:44:03 -0400
commit58f274ae34835d27cd17add767f6fbef13aef7c5 (patch)
treee7238f75bad59de9343b0672f9fa499b529368f0 /luxc/src/lux/repl.clj
parent4e980a83d5e7532ed58337658c0631e2282c969f (diff)
- Separated the platform-independent and platform-dependent components of the caching mechanism.
Diffstat (limited to '')
-rw-r--r--luxc/src/lux/repl.clj8
1 files changed, 4 insertions, 4 deletions
diff --git a/luxc/src/lux/repl.clj b/luxc/src/lux/repl.clj
index 7562aaf70..974267486 100644
--- a/luxc/src/lux/repl.clj
+++ b/luxc/src/lux/repl.clj
@@ -6,10 +6,10 @@
[analyser :as &analyser]
[optimizer :as &optimizer]
[compiler :as &compiler])
- [lux.compiler.jvm.cache :as &cache]
- [lux.analyser.base :as &a-base]
- [lux.analyser.lux :as &a-lux]
- [lux.analyser.module :as &module])
+ [lux.compiler.cache :as &cache]
+ (lux.analyser [base :as &a-base]
+ [lux :as &a-lux]
+ [module :as &module]))
(:import (java.io InputStreamReader
BufferedReader)))