diff options
Diffstat (limited to '')
-rw-r--r-- | src/lux/analyser.clj | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lux/analyser.clj b/src/lux/analyser.clj index 6976f47f0..e4511fdeb 100644 --- a/src/lux/analyser.clj +++ b/src/lux/analyser.clj @@ -6,7 +6,6 @@ [reader :as &reader] [parser :as &parser] [type :as &type] - [macro :as ¯o] [host :as &host]) (lux.analyser [base :as &&] [lux :as &&lux] @@ -61,7 +60,7 @@ (&&lux/analyse-tuple analyse exo-type ?elems) [["lux;Meta" [meta ["lux;Record" ?elems]]]] - (&&lux/analyse-record analyse ?elems) + (&&lux/analyse-record analyse exo-type ?elems) [["lux;Meta" [meta ["lux;Tag" ?ident]]]] (&&lux/analyse-variant analyse exo-type ?ident (_meta (&/V "lux;Tuple" (|list)))) |