aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/default/platform.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/tool/compiler/default/platform.lux')
-rw-r--r--stdlib/source/library/lux/tool/compiler/default/platform.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/default/platform.lux b/stdlib/source/library/lux/tool/compiler/default/platform.lux
index 33c22c1f7..0452ef5b6 100644
--- a/stdlib/source/library/lux/tool/compiler/default/platform.lux
+++ b/stdlib/source/library/lux/tool/compiler/default/platform.lux
@@ -66,12 +66,12 @@
<Operation> (as_is ///generation.Operation <type_vars>)]
(type: .public (Platform <type_vars>)
(Record
- {#&file_system (file.System Async)
+ [#&file_system (file.System Async)
#host (///generation.Host expression directive)
#phase (///generation.Phase <type_vars>)
#runtime (<Operation> [Registry Output])
#phase_wrapper (-> Archive (<Operation> ///phase.Wrapper))
- #write (-> directive Binary)}))
+ #write (-> directive Binary)]))
... TODO: Get rid of this
(type: (Action a)
@@ -131,12 +131,12 @@
(def: (runtime_descriptor registry)
(-> Registry Descriptor)
- {#descriptor.hash 0
+ [#descriptor.hash 0
#descriptor.name archive.runtime_module
#descriptor.file ""
#descriptor.references (set.empty text.hash)
#descriptor.state #.Compiled
- #descriptor.registry registry})
+ #descriptor.registry registry])
(def: runtime_document
(Document .Module)
@@ -304,14 +304,14 @@
(type: Dependence
(Record
- {#depends_on Mapping
- #depended_by Mapping}))
+ [#depends_on Mapping
+ #depended_by Mapping]))
(def: independence
Dependence
(let [empty (dictionary.empty text.hash)]
- {#depends_on empty
- #depended_by empty}))
+ [#depends_on empty
+ #depended_by empty]))
(def: (depend module import dependence)
(-> Module Module Dependence Dependence)