(fileName string)
| 228 | } |
| 229 | |
| 230 | func (p *Project) HasFile(fileName string) bool { |
| 231 | return p.containsFile(p.toPath(fileName)) |
| 232 | } |
| 233 | |
| 234 | func (p *Project) containsFile(path tspath.Path) bool { |
| 235 | return p.Program != nil && p.Program.GetSourceFileByPath(path) != nil |
nothing calls this directly
no test coverage detected