Implemented structs

This commit is contained in:
2025-02-04 18:16:31 +01:00
parent 4609a814df
commit 03a3bd8f02
32 changed files with 267 additions and 63 deletions

17
src/types/Pointer.go Normal file
View File

@ -0,0 +1,17 @@
package types
type Pointer struct {
To Type
}
func (p *Pointer) UniqueName() string {
if p.To == nil {
return "Pointer"
}
return "Pointer:" + p.To.UniqueName()
}
func (p *Pointer) TotalSize() uint8 {
return 8
}