Simplified type system
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user