Added array type
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
package types
|
||||
|
||||
var PointerAny = &Pointer{To: nil}
|
||||
var AnyPointer = &Pointer{To: nil}
|
||||
|
||||
// Pointer is the address of an object.
|
||||
type Pointer struct {
|
||||
@ -13,7 +13,7 @@ func (p *Pointer) Name() string {
|
||||
return "Pointer"
|
||||
}
|
||||
|
||||
return "Pointer:" + p.To.Name()
|
||||
return "*" + p.To.Name()
|
||||
}
|
||||
|
||||
// Size returns the total size in bytes.
|
||||
|
Reference in New Issue
Block a user