FileExists implements checker.Program.
(path string)
| 120 | |
| 121 | // FileExists implements checker.Program. |
| 122 | func (p *Program) FileExists(path string) bool { |
| 123 | return p.Host().FS().FileExists(path) |
| 124 | } |
| 125 | |
| 126 | // GetCurrentDirectory implements checker.Program. |
| 127 | func (p *Program) GetCurrentDirectory() string { |
nothing calls this directly
no test coverage detected