Untested type section parsing yay

This commit is contained in:
2022-09-29 02:01:31 -04:00
parent 58af5f3f15
commit 6c02e45e2e
4 changed files with 105 additions and 9 deletions

View File

@@ -36,9 +36,12 @@ type Identifier struct {
type TypeKind int
const (
// TypeKindNil means that the type is unspecified.
TypeKindNil TypeKind = iota
// TypeKindBasic means its a normal type and inherits from something.
// Basic types can define new members on their parent types.
TypeKindBasic TypeKind = iota
TypeKindBasic
// TypeKindPointer means it's a pointer.
TypeKindPointer