From 58f274ae34835d27cd17add767f6fbef13aef7c5 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 19 Feb 2017 23:44:03 -0400 Subject: - Separated the platform-independent and platform-dependent components of the caching mechanism. --- luxc/src/lux/repl.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'luxc/src/lux/repl.clj') 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))) -- cgit v1.2.3