aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-02-10 03:34:29 -0400
committerEduardo Julian2022-02-10 03:34:29 -0400
commit469b171e5793422a4dbd27f4f2fab8a261c9ccf9 (patch)
tree6a6b206d8e35592f540d67ec9ecef73e85379837 /stdlib/source/library/lux.lux
parent2ea0bda182d76015df4f53ed82efd6f37e93cba6 (diff)
Finishing the meta-compiler [Part 2]
Diffstat (limited to 'stdlib/source/library/lux.lux')
-rw-r--r--stdlib/source/library/lux.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux.lux b/stdlib/source/library/lux.lux
index e6a3e5e6f..7ddfa427f 100644
--- a/stdlib/source/library/lux.lux
+++ b/stdlib/source/library/lux.lux
@@ -5128,10 +5128,10 @@
(def: (recursive_type g!self g!dummy name body)
(-> Code Code Text Code Code)
- (` ((.All ((~ g!self) (~ g!dummy))
- (~ (let$ (local_symbol$ name) (` {.#Apply (..Primitive "") (~ g!self)})
- body)))
- (..Primitive ""))))
+ (` {.#Apply (..Primitive "")
+ (.All ((~ g!self) (~ g!dummy))
+ (~ (let$ (local_symbol$ name) (` {.#Apply (..Primitive "") (~ g!self)})
+ body)))}))
(macro: .public (Rec tokens)
(case tokens