Switched to pointer receivers for values

This commit is contained in:
2025-03-01 18:38:00 +01:00
parent 8ff6faa310
commit 4428b09de2
17 changed files with 62 additions and 62 deletions

View File

@ -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
}