aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper/src/lux/compiler/core.clj
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lux-bootstrapper/src/lux/compiler/core.clj6
1 files changed, 2 insertions, 4 deletions
diff --git a/lux-bootstrapper/src/lux/compiler/core.clj b/lux-bootstrapper/src/lux/compiler/core.clj
index 3dbd93140..5ba14e3ed 100644
--- a/lux-bootstrapper/src/lux/compiler/core.clj
+++ b/lux-bootstrapper/src/lux/compiler/core.clj
@@ -7,8 +7,7 @@
(lux [base :as & :refer [|case |let |do return* return fail*]])
(lux.analyser [base :as &a]
[module :as &a-module])
- (lux.compiler.cache [type :as &&&type]
- [ann :as &&&ann]))
+ (lux.compiler.cache [type :as &&&type]))
(:import (java.io File
BufferedOutputStream
FileOutputStream)))
@@ -56,12 +55,11 @@
;; Next
entry-separator def-entries)
- (&/$DefinitionG [exported? ?def-type ?def-anns ?def-value])
+ (&/$DefinitionG [exported? ?def-type ?def-value])
(str "D"
datum-separator ?name
datum-separator (if exported? "1" "0")
datum-separator (&&&type/serialize-type ?def-type)
- datum-separator (&&&ann/serialize ?def-anns)
;; Next
entry-separator def-entries)