diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-26 15:56:39 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-26 15:56:39 -0400 |
| commit | ad516054002b4105197ef4fc37ac380cdf680750 (patch) | |
| tree | d0603a1dbc01ed777b304ac8567247491f8a5159 /docs/application/type.md | |
| parent | 6f507405ac3b0a128c63134997849203e3493a91 (diff) | |
change how vars are identified
Diffstat (limited to 'docs/application/type.md')
| -rw-r--r-- | docs/application/type.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/application/type.md b/docs/application/type.md index 5377cf6..e6adc81 100644 --- a/docs/application/type.md +++ b/docs/application/type.md @@ -17,17 +17,18 @@ typedef enum { } kpl_type_qualifiers; typedef union { - // ... + // 96 Bytes Max } kpl_type_body; typedef struct { kpl_type_template template; uint8_t qualifiers; uint16_t modifiers; + kpl_ptr self; + uint32_t token_position, token_length; + int32_t id; _Atomic int32_t ref_count; kpl_namespace_module *module; - uint32_t token_line, token_position, token_length; - kpl_ptr self; kpl_type_body body; } kpl_type; |
