summaryrefslogtreecommitdiff
path: root/pit/include/lcq
diff options
context:
space:
mode:
Diffstat (limited to 'pit/include/lcq')
-rw-r--r--pit/include/lcq/pit/runtime/value.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/pit/include/lcq/pit/runtime/value.h b/pit/include/lcq/pit/runtime/value.h
index fa59a46..e3596fe 100644
--- a/pit/include/lcq/pit/runtime/value.h
+++ b/pit/include/lcq/pit/runtime/value.h
@@ -36,7 +36,8 @@ typedef struct {
struct { pit_value car, cdr; } cons;
struct { pit_value *data; i64 len; } array;
struct { u8 *data; i64 len; } bytes;
- struct { pit_value env; pit_value args; pit_value arg_rest_nm; pit_value body; } func;
+ struct { pit_value nm; pit_value closure; } func; /* pit array of env, args, arg_rest_nm, body */
+ // struct { pit_value env; pit_value args; pit_value arg_rest_nm; pit_value body; } func;
struct { pit_nativefunc f; void *data; } nativefunc;
struct { pit_value tag; void *data; } nativedata;
i64 forwarding_pointer;