aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/meta/compiler/language/lux/phase/extension/generation/js/common.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/meta/compiler/language/lux/phase/extension/generation/js/common.lux')
-rw-r--r--stdlib/source/library/lux/meta/compiler/language/lux/phase/extension/generation/js/common.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/library/lux/meta/compiler/language/lux/phase/extension/generation/js/common.lux b/stdlib/source/library/lux/meta/compiler/language/lux/phase/extension/generation/js/common.lux
index 772660310..d6db61d49 100644
--- a/stdlib/source/library/lux/meta/compiler/language/lux/phase/extension/generation/js/common.lux
+++ b/stdlib/source/library/lux/meta/compiler/language/lux/phase/extension/generation/js/common.lux
@@ -31,7 +31,7 @@
["[1][0]" primitive]
["[1][0]" structure]
["[1][0]" reference]
- ["[1][0]" case]
+ ["[1][0]" when]
["[1][0]" loop]
["[1][0]" function]]]
[//
@@ -46,7 +46,7 @@
(-> Text (Generator s))]
Handler))
(function (_ extension_name phase archive input)
- (case (<s>.result parser input)
+ (when (<s>.result parser input)
{try.#Success input'}
(handler extension_name phase archive input')
@@ -101,7 +101,7 @@
(def .public (statement expression archive synthesis)
Phase!
- (case synthesis
+ (when synthesis
... TODO: Get rid of this ASAP
{synthesis.#Extension "lux syntax char case!" parameters}
(do /////.monad
@@ -126,17 +126,17 @@
([synthesis.#Reference]
[synthesis.#Extension])
- (synthesis.branch/case case)
- (//case.case! statement expression archive case)
+ (synthesis.branch/when when)
+ (//when.when! statement expression archive when)
(synthesis.branch/exec it)
- (//case.exec! statement expression archive it)
+ (//when.exec! statement expression archive it)
(synthesis.branch/let let)
- (//case.let! statement expression archive let)
+ (//when.let! statement expression archive let)
(synthesis.branch/if if)
- (//case.if! statement expression archive if)
+ (//when.if! statement expression archive if)
(synthesis.loop/scope scope)
(//loop.scope! statement expression archive scope)