diff options
Diffstat (limited to '')
-rw-r--r-- | luxc/src/lux/analyser.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/luxc/src/lux/analyser.clj b/luxc/src/lux/analyser.clj index 614bc0a34..50edefac4 100644 --- a/luxc/src/lux/analyser.clj +++ b/luxc/src/lux/analyser.clj @@ -59,7 +59,8 @@ (defn ^:private analyse-ast [optimize eval! compile-module compilers exo-type ?token] (|let [analyse (partial analyse-ast optimize eval! compile-module compilers) [cursor token] ?token - [compile-def compile-program compile-class compile-interface] compilers] + compile-def (aget compilers 0) + compile-program (aget compilers 1)] (|case token ;; Standard special forms (&/$BoolS ?value) |