Implemented struct size calculation after a scan

This commit is contained in:
2025-02-07 16:26:24 +01:00
parent c28eace966
commit 63a2752c56
7 changed files with 48 additions and 24 deletions

View File

@ -4,8 +4,9 @@ import "git.akyoto.dev/cli/q/src/token"
// Field is a memory region in a data structure.
type Field struct {
Type Type
Name string
Type Type
TypeName string
Position token.Position
Offset int
}