()
| 347 | } |
| 348 | |
| 349 | func (v *Reference) IsTag() bool { |
| 350 | ret := C.git_reference_is_tag(v.ptr) == 1 |
| 351 | runtime.KeepAlive(v) |
| 352 | return ret |
| 353 | } |
| 354 | |
| 355 | // IsNote checks if the reference is a note. |
| 356 | func (v *Reference) IsNote() bool { |
nothing calls this directly
no outgoing calls
no test coverage detected