compiler tweak.

compiler now includes the function that was bound in the returned data
from compiling a binding line.
This commit is contained in:
trans_soup 2023-11-06 18:14:07 +01:00
parent 54a606794d
commit 1df9eda02a
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ export function compile_line (env, line) {
return {
valid: true,
env: new_env,
fn: value,
};
}