aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/program.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-09 23:02:01 -0400
committerEduardo Julian2021-08-09 23:02:01 -0400
commit464b6e8f5e6c62f58fa8c7ff61ab2ad215e98bd1 (patch)
tree1ae9d95956cee4251cd29a3e24c246c4360d567d /lux-jvm/source/program.lux
parentf621a133e6e0a516c0586270fea8eaffb4829d82 (diff)
Improved single-line comment syntax (from "##" to "...").
Diffstat (limited to 'lux-jvm/source/program.lux')
-rw-r--r--lux-jvm/source/program.lux22
1 files changed, 11 insertions, 11 deletions
diff --git a/lux-jvm/source/program.lux b/lux-jvm/source/program.lux
index e5be7649c..e14cfbb27 100644
--- a/lux-jvm/source/program.lux
+++ b/lux-jvm/source/program.lux
@@ -46,15 +46,15 @@
[extension (#+ Phase Bundle Operation Handler Extender)
["." analysis #_
["#" jvm]]
- ## ["." generation #_
- ## ["#" jvm]]
- ## ["." directive #_
- ## ["#" jvm]]
+ ... ["." generation #_
+ ... ["#" jvm]]
+ ... ["." directive #_
+ ... ["#" jvm]]
]
[generation
["." jvm #_
["#/." runtime]
- ## ["#/." host]
+ ... ["#/." host]
]]]]]]]]]
[program
["/" compositor
@@ -227,25 +227,25 @@
apply_method)))))))
(def: .public platform
- ## (IO (Platform Anchor (Bytecode Any) Definition))
+ ... (IO (Platform Anchor (Bytecode Any) Definition))
(IO [java/lang/ClassLoader
(Platform _.Anchor _.Inst _.Definition)])
(do io.monad
- [## host jvm/host.host
+ [... host jvm/host.host
[loader host] jvm.host]
(in [loader
{#platform.&file_system (file.async file.default)
#platform.host host
- ## #platform.phase jvm.generate
+ ... #platform.phase jvm.generate
#platform.phase expression.translate
- ## #platform.runtime runtime.generate
+ ... #platform.runtime runtime.generate
#platform.runtime runtime.translate
#platform.phase_wrapper ..phase_wrapper
#platform.write product.right}])))
(def: (extender phase_wrapper)
(-> platform.Phase_Wrapper Extender)
- ## TODO: Stop relying on coercions ASAP.
+ ... TODO: Stop relying on coercions ASAP.
(<| (:as Extender)
(function (@self handler))
(:as Handler)
@@ -290,7 +290,7 @@
..expander
(analysis.bundle loader)
(io.io platform)
- ## generation.bundle
+ ... generation.bundle
translation.bundle
(|>> ..extender (directive.bundle loader))
(jvm/program.program jvm/runtime.class_name)