GetSourceFile implements compiler.AnyProgram interface.
(path string)
| 113 | |
| 114 | // GetSourceFile implements compiler.AnyProgram interface. |
| 115 | func (p *Program) GetSourceFile(path string) *ast.SourceFile { |
| 116 | p.panicIfNoProgram("GetSourceFile") |
| 117 | return p.program.GetSourceFile(path) |
| 118 | } |
| 119 | |
| 120 | // GetConfigFileParsingDiagnostics implements compiler.AnyProgram interface. |
| 121 | func (p *Program) GetConfigFileParsingDiagnostics() []*ast.Diagnostic { |
nothing calls this directly
no test coverage detected