Program implements compiler.AnyProgram interface.
()
| 95 | |
| 96 | // Program implements compiler.AnyProgram interface. |
| 97 | func (p *Program) Program() *compiler.Program { |
| 98 | p.panicIfNoProgram("Program") |
| 99 | return p.program |
| 100 | } |
| 101 | |
| 102 | // IsSourceFileDefaultLibrary implements compiler.AnyProgram interface. |
| 103 | func (p *Program) IsSourceFileDefaultLibrary(path tspath.Path) bool { |
nothing calls this directly
no test coverage detected