Simplified type system

This commit is contained in:
2025-02-04 23:58:01 +01:00
parent bde68d4d64
commit 8421a21c9a
16 changed files with 70 additions and 55 deletions

View File

@ -2,10 +2,10 @@ package types
import "git.akyoto.dev/cli/q/src/token"
// Field is a field in a data structure.
// Field is a memory region in a data structure.
type Field struct {
Type Type
Name string
Position token.Position
Offset uint8
Offset int
}