(path string)
| 122 | } |
| 123 | |
| 124 | func (h *shellCallHandler) contextArgRef(path string) (string, error) { |
| 125 | apath, err := h.contextAbsPath(path) |
| 126 | if err != nil { |
| 127 | return apath, err |
| 128 | } |
| 129 | h.mu.RLock() |
| 130 | defer h.mu.RUnlock() |
| 131 | return h.wd.Context.ArgRef(apath), nil |
| 132 | } |
| 133 | |
| 134 | // moduleContext is an in-memory representation of a ModuleSource, used to produce paths quickly |
| 135 | type moduleContext interface { |
no test coverage detected