Switched to pointer receivers for values
This commit is contained in:
@ -8,10 +8,10 @@ type Label struct {
|
||||
Label string
|
||||
}
|
||||
|
||||
func (v Label) String() string {
|
||||
func (v *Label) String() string {
|
||||
return "Label"
|
||||
}
|
||||
|
||||
func (v Label) Type() types.Type {
|
||||
func (v *Label) Type() types.Type {
|
||||
return v.Typ
|
||||
}
|
||||
|
Reference in New Issue
Block a user