(filename string)
| 1795 | } |
| 1796 | |
| 1797 | func (p *Program) GetSourceFile(filename string) *ast.SourceFile { |
| 1798 | path := p.toPath(filename) |
| 1799 | return p.GetSourceFileByPath(path) |
| 1800 | } |
| 1801 | |
| 1802 | func (p *Program) GetSourceFileForResolvedModule(fileName string) *ast.SourceFile { |
| 1803 | file := p.GetSourceFile(fileName) |
no test coverage detected