aboutsummaryrefslogtreecommitdiff
path: root/src/all.hff
diff options
context:
space:
mode:
Diffstat (limited to 'src/all.hff')
-rw-r--r--src/all.hff16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/all.hff b/src/all.hff
index f15df13..ff74ab7 100644
--- a/src/all.hff
+++ b/src/all.hff
@@ -85,6 +85,22 @@ struct Tok {
},
}
+struct Type {
+ size usize,
+ align usize,
+ konst bool,
+ id uint,
+ t enum union {
+ void,
+ bool,
+ int struct { sgn bool },
+ flo,
+ ptr *Type,
+ arr struct { child *Type, length i64 },
+ slice *Type,
+ }
+}
+
struct Decl {
}