(elem pathSpec)
| 61 | } |
| 62 | |
| 63 | func (p localPath) Join(elem pathSpec) localPath { |
| 64 | return newLocalPath(filepath.Join(p.file, elem.String())) |
| 65 | } |
| 66 | |
| 67 | func (p localPath) Glob() (matches []string, err error) { |
| 68 | return filepath.Glob(p.file) |
no test coverage detected