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

@ -16,10 +16,7 @@ func (s *Scanner) scanStruct(file *fs.File, tokens token.List, i int) (int, erro
}
structName := tokens[i].Text(file.Bytes)
structure := &types.Struct{
Name: structName,
}
structure := types.NewStruct(structName)
i++
@ -39,14 +36,12 @@ func (s *Scanner) scanStruct(file *fs.File, tokens token.List, i int) (int, erro
fieldType := types.Parse(fieldTypeName)
i++
structure.Fields = append(structure.Fields, &types.Field{
structure.AddField(&types.Field{
Type: fieldType,
Name: fieldName,
Position: token.Position(fieldPosition),
Offset: structure.Size,
Offset: structure.Size(),
})
structure.Size += fieldType.TotalSize()
}
if tokens[i].Kind == token.BlockEnd {