Testing only
(path tspath.Path)
| 1838 | |
| 1839 | // Testing only |
| 1840 | func (p *Program) IsMissingPath(path tspath.Path) bool { |
| 1841 | return slices.ContainsFunc(p.missingFiles, func(missingPath string) bool { |
| 1842 | return p.toPath(missingPath) == path |
| 1843 | }) |
| 1844 | } |
| 1845 | |
| 1846 | func (p *Program) ExplainFiles(w io.Writer, locale locale.Locale) { |
| 1847 | toRelativeFileName := func(fileName string) string { |