Updated tree and accessor semantics

This commit is contained in:
2022-09-05 11:20:23 -04:00
parent 031907a6e0
commit 98a88b71be
3 changed files with 5 additions and 9 deletions

View File

@@ -55,9 +55,6 @@ const (
// TypeKindPointer means it's a pointer
TypeKindPointer
// TypeKindArray means it's a fixed length array.
TypeKindArray
// TypeKindVariableArray means it's an array of variable length.
TypeKindVariableArray
)
@@ -68,8 +65,6 @@ type Type struct {
mutable bool
kind TypeKind
// only applicable for fixed length arrays.
length uint64
// only applicable for basic.