aboutsummaryrefslogtreecommitdiff
path: root/src/lux.clj
diff options
context:
space:
mode:
authorEduardo Julian2015-07-24 19:19:16 -0400
committerEduardo Julian2015-07-24 19:19:16 -0400
commit1fd2fc0ff67f76177d4addc13faae5d0e95773d3 (patch)
tree64628a67ca1e9dda97123508262f3cf788b0b7f8 /src/lux.clj
parent874af34a80ab799d0470810b7ade337b96ce50bc (diff)
- Fixed an error when compiling Java field access (both static & virtual).
- Fixed some errors regarding cache loading.
Diffstat (limited to '')
-rw-r--r--src/lux.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lux.clj b/src/lux.clj
index 0fcb33785..7ff8fda37 100644
--- a/src/lux.clj
+++ b/src/lux.clj
@@ -14,7 +14,7 @@
:reload-all))
(defn -main [& _]
- (do (time (&compiler/compile-all (&/|list "program")))
+ (do (time (&compiler/compile-all (&/|list "lux" "program")))
;; (prn @&type/counter)
)
(System/exit 0))