()
| 200 | } |
| 201 | |
| 202 | func (sub *Submodule) Name() string { |
| 203 | n := C.GoString(C.git_submodule_name(sub.ptr)) |
| 204 | runtime.KeepAlive(sub) |
| 205 | return n |
| 206 | } |
| 207 | |
| 208 | func (sub *Submodule) Path() string { |
| 209 | n := C.GoString(C.git_submodule_path(sub.ptr)) |
nothing calls this directly
no outgoing calls
no test coverage detected