aboutsummaryrefslogtreecommitdiff
path: root/lux-r
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lux-r/source/program.lux8
-rw-r--r--lux-ruby/project.lux4
-rw-r--r--lux-ruby/source/program.lux8
3 files changed, 10 insertions, 10 deletions
diff --git a/lux-r/source/program.lux b/lux-r/source/program.lux
index 8a5792e17..18f074100 100644
--- a/lux-r/source/program.lux
+++ b/lux-r/source/program.lux
@@ -543,11 +543,11 @@
(do io.monad
[[interpreter host] ..host]
(wrap [interpreter
- {#platform.&file_system (file.async file.default)
+ [#platform.&file_system (file.async file.default)
#platform.host host
#platform.phase r.generate
#platform.runtime runtime.generate
- #platform.write (|>> _.code (\ utf8.codec encoded))}])))
+ #platform.write (|>> _.code (\ utf8.codec encoded))]])))
(def: (program context program)
(Program _.Expression _.Expression)
@@ -594,10 +594,10 @@
(do io.monad
[[interpreter platform] ..platform]
(exec (do promise.monad
- [_ (/.compiler {#/static.host @.r
+ [_ (/.compiler [#/static.host @.r
#/static.host_module_extension extension
#/static.target (/cli.target service)
- #/static.artifact_extension extension}
+ #/static.artifact_extension extension]
(..expander interpreter)
analysis.bundle
(io.io platform)
diff --git a/lux-ruby/project.lux b/lux-ruby/project.lux
index 99f794bc8..b9e998cde 100644
--- a/lux-ruby/project.lux
+++ b/lux-ruby/project.lux
@@ -1,5 +1,5 @@
{""
- {#identity ["com.github.luxlang" "lux-ruby" "0.6.0-SNAPSHOT"]
+ [#identity ["com.github.luxlang" "lux-ruby" "0.6.0-SNAPSHOT"]
#description "A Ruby compiler for Lux."
#deploy_repositories {"snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"
@@ -12,4 +12,4 @@
#dependencies [["com.github.luxlang" "stdlib" "0.6.0-SNAPSHOT" "tar"]
["org.jruby" "jruby-complete" "9.2.15.0" "jar"]]
- #program "program"}}
+ #program "program"]}
diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux
index c76b44b96..d2b32c0be 100644
--- a/lux-ruby/source/program.lux
+++ b/lux-ruby/source/program.lux
@@ -800,12 +800,12 @@
(IO (Platform Register _.Expression _.Statement))
(do io.monad
[host ..host]
- (in {#platform.&file_system (file.async file.default)
+ (in [#platform.&file_system (file.async file.default)
#platform.host host
#platform.phase ruby.generate
#platform.runtime runtime.generate
#platform.phase_wrapper ..phase_wrapper
- #platform.write (|>> _.code (\ utf8.codec encoded))})))
+ #platform.write (|>> _.code (\ utf8.codec encoded))])))
(def: (program context program)
(Program _.Expression _.Statement)
@@ -820,10 +820,10 @@
(program: [service /cli.service]
(let [extension ".rb"]
(exec (do async.monad
- [_ (/.compiler {#/static.host @.ruby
+ [_ (/.compiler [#/static.host @.ruby
#/static.host_module_extension extension
#/static.target (/cli.target service)
- #/static.artifact_extension extension}
+ #/static.artifact_extension extension]
..expander
analysis.bundle
..platform