Improved type system
This commit is contained in:
@ -7,10 +7,6 @@ type Pointer struct {
|
||||
|
||||
// Name returns the type name.
|
||||
func (p *Pointer) Name() string {
|
||||
if p.To == nil {
|
||||
return "*Any"
|
||||
}
|
||||
|
||||
return "*" + p.To.Name()
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user