Merge branch 'worktree-macros-essays' into macros

This commit is contained in:
2026-03-04 15:49:02 +00:00
2 changed files with 1 additions and 4 deletions

View File

@@ -650,9 +650,6 @@
if (name === "true") return true;
if (name === "false") return false;
if (name === "nil") return NIL;
// Debug: log env keys to help diagnose
var envKeys = Object.keys(env).filter(function(k) { return typeof env[k] !== "function"; }).slice(0, 20);
console.error("Undefined symbol: " + name + " | env keys (non-fn): " + envKeys.join(", "));
throw new Error("Undefined symbol: " + name);
}

View File

@@ -1174,7 +1174,7 @@ async def _aser_component(
while i < len(args):
arg = args[i]
if isinstance(arg, Keyword) and i + 1 < len(args):
kwargs[arg.name] = await async_eval(args[i + 1], env, ctx)
kwargs[arg.name] = await _aser(args[i + 1], env, ctx)
i += 2
else:
children.append(arg)