diff options
author | Eduardo Julian | 2019-03-06 21:18:25 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-03-06 21:18:25 -0400 |
commit | 88131ea520f1b2749c239227463d521930c08d0a (patch) | |
tree | 142a0a32715f73bfc01dde98619230ea1e7a4715 /stdlib | |
parent | c1160c68a9a9d3f1243a69d585a06bf1808ef32e (diff) |
Removed the "translation/common" hierarchy.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/control/concatenative.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/control/concurrency/actor.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/control/exception.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/macro/poly.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/phase/translation/js/case.lux | 5 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/phase/translation/js/function.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/phase/translation/js/reference.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/phase/translation/reference.lux (renamed from stdlib/source/lux/tool/compiler/phase/translation/common/reference.lux) | 25 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/phase/translation/scheme/case.jvm.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/phase/translation/scheme/function.jvm.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/type/abstract.lux | 3 | ||||
-rw-r--r-- | stdlib/source/lux/type/unit.lux | 3 |
12 files changed, 24 insertions, 36 deletions
diff --git a/stdlib/source/lux/control/concatenative.lux b/stdlib/source/lux/control/concatenative.lux index 5806ec898..c99526fb6 100644 --- a/stdlib/source/lux/control/concatenative.lux +++ b/stdlib/source/lux/control/concatenative.lux @@ -17,8 +17,7 @@ ["." code] ["s" syntax (#+ syntax:)] [syntax - ["cs" common] - [common + ["cs" common ["csr" reader] ["csw" writer]]]]]) diff --git a/stdlib/source/lux/control/concurrency/actor.lux b/stdlib/source/lux/control/concurrency/actor.lux index b47785142..7cd6a8fe1 100644 --- a/stdlib/source/lux/control/concurrency/actor.lux +++ b/stdlib/source/lux/control/concurrency/actor.lux @@ -16,8 +16,7 @@ ["." code] ["s" syntax (#+ syntax: Syntax)] [syntax - ["cs" common] - [common + ["cs" common ["csr" reader] ["csw" writer]]]] [type diff --git a/stdlib/source/lux/control/exception.lux b/stdlib/source/lux/control/exception.lux index f5d0721e9..9a357d8a1 100644 --- a/stdlib/source/lux/control/exception.lux +++ b/stdlib/source/lux/control/exception.lux @@ -14,8 +14,7 @@ ["." code] ["s" syntax (#+ syntax: Syntax)] [syntax - ["cs" common] - [common + ["cs" common ["csr" reader] ["csw" writer]]]]]) diff --git a/stdlib/source/lux/macro/poly.lux b/stdlib/source/lux/macro/poly.lux index 200d507eb..a683fe50a 100644 --- a/stdlib/source/lux/macro/poly.lux +++ b/stdlib/source/lux/macro/poly.lux @@ -23,8 +23,7 @@ ["." code] ["s" syntax (#+ Syntax syntax:)] [syntax - ["cs" common] - [common + ["cs" common ["csr" reader] ["csw" writer]]]] ["." type ("#/." equivalence) diff --git a/stdlib/source/lux/tool/compiler/phase/translation/js/case.lux b/stdlib/source/lux/tool/compiler/phase/translation/js/case.lux index 25522f112..889ad471b 100644 --- a/stdlib/source/lux/tool/compiler/phase/translation/js/case.lux +++ b/stdlib/source/lux/tool/compiler/phase/translation/js/case.lux @@ -16,15 +16,14 @@ ["//." reference] ["//." primitive] [// - [common - ["common-." reference]] + ["." reference] ["//." // ("#/." monad) [// [reference (#+ Register)] ["." synthesis (#+ Synthesis Path)]]]]]) (def: #export register - (common-reference.local _.var)) + (reference.local _.var)) (def: #export (let translate [valueS register bodyS]) (-> Phase [Synthesis Register Synthesis] diff --git a/stdlib/source/lux/tool/compiler/phase/translation/js/function.lux b/stdlib/source/lux/tool/compiler/phase/translation/js/function.lux index 5727b737d..0d0d659ab 100644 --- a/stdlib/source/lux/tool/compiler/phase/translation/js/function.lux +++ b/stdlib/source/lux/tool/compiler/phase/translation/js/function.lux @@ -16,8 +16,7 @@ ["." reference] ["//." case] ["/." // - [common - ["common-." reference]] + ["common-." reference] ["//." // ("#/." monad) [// [reference (#+ Register Variable)] diff --git a/stdlib/source/lux/tool/compiler/phase/translation/js/reference.lux b/stdlib/source/lux/tool/compiler/phase/translation/js/reference.lux index 0e4cd1489..9f8555788 100644 --- a/stdlib/source/lux/tool/compiler/phase/translation/js/reference.lux +++ b/stdlib/source/lux/tool/compiler/phase/translation/js/reference.lux @@ -4,8 +4,7 @@ ["_" js (#+ Expression)]]] [// [// - [common - ["." reference]]]]) + ["." reference]]]) (def: #export system (reference.system (: (-> Text Expression) _.var) diff --git a/stdlib/source/lux/tool/compiler/phase/translation/common/reference.lux b/stdlib/source/lux/tool/compiler/phase/translation/reference.lux index af676ad85..878d96e83 100644 --- a/stdlib/source/lux/tool/compiler/phase/translation/common/reference.lux +++ b/stdlib/source/lux/tool/compiler/phase/translation/reference.lux @@ -6,12 +6,11 @@ [text format]] [type (#+ :share)]] - [// - ["/." // - ["//." // ("#/." monad) - [// - [synthesis (#+ Synthesis)] - ["." reference (#+ Register Variable Reference)]]]]]) + ["." // + ["/." // ("#/." monad) + [// + [synthesis (#+ Synthesis)] + ["." reference (#+ Register Variable Reference)]]]]) (signature: #export (System expression) (: (-> Register expression) @@ -19,13 +18,13 @@ (: (-> Register expression) foreign) (: (All [anchor statement] - (-> Variable (///.Operation anchor expression statement))) + (-> Variable (//.Operation anchor expression statement))) variable) (: (All [anchor statement] - (-> Name (///.Operation anchor expression statement))) + (-> Name (//.Operation anchor expression statement))) constant) (: (All [anchor statement] - (-> Reference (///.Operation anchor expression statement))) + (-> Reference (//.Operation anchor expression statement))) reference)) (def: (variable-maker prefix variable) @@ -56,19 +55,19 @@ {(-> Text expression) variable} {(All [anchor statement] - (-> Variable (///.Operation anchor expression statement))) + (-> Variable (//.Operation anchor expression statement))) (|>> (case> (#reference.Local register) (local register) (#reference.Foreign register) (foreign register)) - /////wrap)}) + ////wrap)}) constant (:share [expression] {(-> Text expression) constant} {(All [anchor statement] - (-> Name (///.Operation anchor expression statement))) - (|>> ///.remember (/////map constant))})] + (-> Name (//.Operation anchor expression statement))) + (|>> //.remember (////map constant))})] (structure (def: local local) (def: foreign foreign) diff --git a/stdlib/source/lux/tool/compiler/phase/translation/scheme/case.jvm.lux b/stdlib/source/lux/tool/compiler/phase/translation/scheme/case.jvm.lux index c20fea5fe..6d5cf911b 100644 --- a/stdlib/source/lux/tool/compiler/phase/translation/scheme/case.jvm.lux +++ b/stdlib/source/lux/tool/compiler/phase/translation/scheme/case.jvm.lux @@ -16,8 +16,7 @@ ["//." primitive] ["." reference] [// - [common - ["common-." reference]] + ["common-." reference] ["//." // ("#/." monad) ["." synthesis (#+ Synthesis Path)] [// diff --git a/stdlib/source/lux/tool/compiler/phase/translation/scheme/function.jvm.lux b/stdlib/source/lux/tool/compiler/phase/translation/scheme/function.jvm.lux index cc2caf056..bef6af902 100644 --- a/stdlib/source/lux/tool/compiler/phase/translation/scheme/function.jvm.lux +++ b/stdlib/source/lux/tool/compiler/phase/translation/scheme/function.jvm.lux @@ -16,8 +16,7 @@ ["." reference] ["//." case] ["/." // - [common - ["common-." reference]] + ["common-." reference] ["//." // ("#/." monad) [analysis (#+ Variant Tuple Environment Arity Abstraction Application Analysis)] [synthesis (#+ Synthesis)] diff --git a/stdlib/source/lux/type/abstract.lux b/stdlib/source/lux/type/abstract.lux index ccaa294b7..e59596b4d 100644 --- a/stdlib/source/lux/type/abstract.lux +++ b/stdlib/source/lux/type/abstract.lux @@ -14,8 +14,7 @@ ["." code] ["s" syntax (#+ Syntax syntax:)] [syntax - ["cs" common] - [common + ["cs" common ["csr" reader] ["csw" writer]]]] [type (#+ :cast)]]) diff --git a/stdlib/source/lux/type/unit.lux b/stdlib/source/lux/type/unit.lux index 3aece5ff1..69ff261b2 100644 --- a/stdlib/source/lux/type/unit.lux +++ b/stdlib/source/lux/type/unit.lux @@ -16,8 +16,7 @@ ["." code] ["s" syntax (#+ syntax:)] [syntax - ["cs" common] - [common + ["cs" common ["csr" reader] ["csw" writer]]]] [type |