aboutsummaryrefslogtreecommitdiff
path: root/ref/symbolic.go
blob: 4809e937d9ea30f8a3c4fbf4ed5e750c32952b73 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package ref

// Symbolic points to another reference name.
//
// Labels: MT-Unsafe.
type Symbolic struct {
	RefName string
	Target  string
}

// Name returns the fully-qualified reference name.
func (ref Symbolic) Name() string {
	return ref.RefName
}

func (Symbolic) isRef() {}