summaryrefslogtreecommitdiff
path: root/docs/application/type.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-07-13 17:02:34 -0400
committernodist <kevin.comas.git@gmail.com>2026-07-13 17:02:34 -0400
commit4c008d258f6fd23fd64e2a6b059448748d7f7d24 (patch)
tree6db6b1d6526c17ce338a5146706bd9c5d8e5929e /docs/application/type.md
parentf1773b4959a35f28b37617f775f4fc1683e4f654 (diff)
every type has access to its parent
Diffstat (limited to 'docs/application/type.md')
-rw-r--r--docs/application/type.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/application/type.md b/docs/application/type.md
index 793fb14..f028fba 100644
--- a/docs/application/type.md
+++ b/docs/application/type.md
@@ -21,21 +21,23 @@ typedef union {
// 64 Bytes Max
} kpl_type_body;
+typedef struct {
+ uint16_t length, line;
+ int32_t position, module_id;
+} kpl_token;
+
typedef struct _kpl_type {
kpl_type_template template;
uint8_t qualifiers;
uint16_t modifiers;
union {
- struct {
- uint16_t length, line;
- uint32_t position, module_id;
- } token;
+ kpl_token token;
struct {
int32_t id, tree_weight;
} var;
} meta;
_Atomic ssize_t ref_count;
- struct _kpl_type *prev, *next;
+ struct _kpl_type *prev, *next, *parent;
kpl_type_body body;
} kpl_type;
```