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() {}