From 51c371db6ced53b8f9198890672961ef912a9aad Mon Sep 17 00:00:00 2001 From: nodist Date: Tue, 7 Jul 2026 15:33:52 -0400 Subject: define interfaces --- docs/type_system/function.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/type_system/function.md') diff --git a/docs/type_system/function.md b/docs/type_system/function.md index 3847941..515550a 100644 --- a/docs/type_system/function.md +++ b/docs/type_system/function.md @@ -17,8 +17,8 @@ Function[[MODE | STATELESS | STATEFUL]; JIT; IR; Body; INVOCATION_LIST; RETURN_T ```c typedef struct { - void *code; - kpl_ptr ir, body, invocations, return_type, var_list; + void *jit; + kpl_ptr ir, body, invocation_list, return_type, var_list; } kpl_type_body_function; ``` @@ -43,7 +43,7 @@ A function with an incomplete type, type checking occurs at invocation its compl ## Complete -A function with a complete type, its sync/async invocations are stored in the `INVOCATION_LIST` +A function with a complete type, it stores it's `IR` and `JIT` ## Native -- cgit v1.2.3