Implemented structs
This commit is contained in:
17
src/types/Pointer.go
Normal file
17
src/types/Pointer.go
Normal 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
|
||||
}
|
Reference in New Issue
Block a user