From 7add85856a927766f218789aa946641228650c02 Mon Sep 17 00:00:00 2001 From: nodist Date: Mon, 6 Jul 2026 09:44:03 -0400 Subject: add IR ast --- docs/type_system/op.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/type_system/op.md') diff --git a/docs/type_system/op.md b/docs/type_system/op.md index 79f0953..f9b2173 100644 --- a/docs/type_system/op.md +++ b/docs/type_system/op.md @@ -5,12 +5,12 @@ ```text Op[[OP_NAME] RETURN_TYPE; LEFT_TYPE; RIGHT_TYPE] ``` + +`OP_NAME` a single value + ## 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