aboutsummaryrefslogtreecommitdiff
path: root/luxc/src/lux/compiler/js/rt.clj
diff options
context:
space:
mode:
authorEduardo Julian2017-02-02 19:18:26 -0400
committerEduardo Julian2017-02-02 19:18:26 -0400
commit8cd810a5df994d9bcef8d34605c1ac98900211e6 (patch)
treea3560c3ebf74d7ce7799de3cc00219e889211a83 /luxc/src/lux/compiler/js/rt.clj
parent88a6dee335155753674eccf245e6a041542604aa (diff)
- Improved conversions to/from JS.
- Improved macro calls. - Improved pattern-matching.
Diffstat (limited to 'luxc/src/lux/compiler/js/rt.clj')
-rw-r--r--luxc/src/lux/compiler/js/rt.clj7
1 files changed, 4 insertions, 3 deletions
diff --git a/luxc/src/lux/compiler/js/rt.clj b/luxc/src/lux/compiler/js/rt.clj
index c54c9debf..3c9186a1e 100644
--- a/luxc/src/lux/compiler/js/rt.clj
+++ b/luxc/src/lux/compiler/js/rt.clj
@@ -973,12 +973,13 @@
;; Must recurse.
"return sum_get(sum[2], (wantedTag - sum[0]), wantsLast);"
"}"
- ;; Not match.
+ ;; No match.
"else { return null; }"
"}"
- ;; Not match.
+ ;; No match.
"else { return null; }"
- "})")})
+ "})")
+ })
(def LuxRT "LuxRT")