(path string)
| 112 | } |
| 113 | |
| 114 | func (h *shellCallHandler) contextModRef(path string) (string, error) { |
| 115 | apath, err := h.contextAbsPath(path) |
| 116 | if err != nil { |
| 117 | return apath, err |
| 118 | } |
| 119 | h.mu.RLock() |
| 120 | defer h.mu.RUnlock() |
| 121 | return h.wd.Context.ModRef(apath), nil |
| 122 | } |
| 123 | |
| 124 | func (h *shellCallHandler) contextArgRef(path string) (string, error) { |
| 125 | apath, err := h.contextAbsPath(path) |
no test coverage detected