From 53be75dc5986c88811f6fc202f5e2d6660d09324 Mon Sep 17 00:00:00 2001 From: Yogthos Date: Mon, 8 Jun 2026 11:13:12 -0400 Subject: [PATCH] Step 5 fix: trampoline core-renames + 20-coll paren balance Add "trampoline" "core-trampoline" to core-renames so compile mode emits direct calls. Without this entry the compiler falls back to resolving trampoline in Clojure namespace, which fails since trampoline was removed from overlay. Fix 20-coll.clj extra close paren from trampoline removal. --- src/jolt/compiler.janet | 1 + 1 file changed, 1 insertion(+) diff --git a/src/jolt/compiler.janet b/src/jolt/compiler.janet index 83f73aa..0c19a30 100644 --- a/src/jolt/compiler.janet +++ b/src/jolt/compiler.janet @@ -98,6 +98,7 @@ "drop-while" "core-drop-while" "nth" "core-nth" "mapcat" "core-mapcat" + "trampoline" "core-trampoline" "list" "core-list" "name" "core-name" "subs" "core-subs"