| 2124 | func (*countingView) Render(io.Writer, string, any, ...string) error { return nil } |
| 2125 | |
| 2126 | type blockingView struct { |
| 2127 | loadStarted chan struct{} |
| 2128 | loadRelease chan struct{} |
| 2129 | renderEntered chan struct{} |
| 2130 | loads int |
| 2131 | } |
| 2132 | |
| 2133 | func (v *blockingView) Load() error { |
| 2134 | v.loads++ |
nothing calls this directly
no outgoing calls
no test coverage detected