From cf9285b1dbdf687630076149413f16e5d4af82e8 Mon Sep 17 00:00:00 2001 From: nodist Date: Sun, 28 Jun 2026 13:41:22 -0400 Subject: type body object definitions and garbage collection algo --- docs/type_system/op.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'docs/type_system/op.md') diff --git a/docs/type_system/op.md b/docs/type_system/op.md index 198d73f..79f0953 100644 --- a/docs/type_system/op.md +++ b/docs/type_system/op.md @@ -5,5 +5,12 @@ ```text Op[[OP_NAME] RETURN_TYPE; LEFT_TYPE; RIGHT_TYPE] ``` +## Type Body Object Definitions + +```c +typedef struct { + kpl_ptr return_type, statement_left, statement_right; +} kpl_type_body_op; +``` The `OP_NAME` a single value -- cgit v1.2.3