aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/tool
diff options
context:
space:
mode:
authorEduardo Julian2021-06-27 20:09:48 -0400
committerEduardo Julian2021-06-27 20:09:48 -0400
commitdb3e864ae66da7f7d1034ae95967605144d5ec47 (patch)
tree29c51002455a2c8f7d4aa25ab13c688cfa8d60e3 /stdlib/source/lux/tool
parentb80f79ae6b2e240949ebd709a253e21f7caf7ed3 (diff)
Made obtaining env variables more granular + partial Lua support.
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/tool/compiler/language/lux/phase/synthesis.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/tool/compiler/language/lux/phase/synthesis.lux b/stdlib/source/lux/tool/compiler/language/lux/phase/synthesis.lux
index e6bd713f7..615e7a722 100644
--- a/stdlib/source/lux/tool/compiler/language/lux/phase/synthesis.lux
+++ b/stdlib/source/lux/tool/compiler/language/lux/phase/synthesis.lux
@@ -51,6 +51,9 @@
(#///analysis.Primitive analysis')
(phase\wrap (#/.Primitive (..primitive analysis')))
+ (#///analysis.Reference reference)
+ (phase\wrap (#/.Reference reference))
+
(#///analysis.Structure structure)
(/.with_currying? false
(case structure
@@ -64,9 +67,6 @@
(monad.map phase.monad optimization')
(phase\map (|>> /.tuple)))))
- (#///analysis.Reference reference)
- (phase\wrap (#/.Reference reference))
-
(#///analysis.Case inputA branchesAB+)
(/.with_currying? false
(/case.synthesize optimization branchesAB+ archive inputA))