| 2145 | } |
| 2146 | |
| 2147 | type sharedBlockingView struct { |
| 2148 | loadStarted chan struct{} |
| 2149 | loadRelease chan struct{} |
| 2150 | renderEntered chan struct{} |
| 2151 | blockOnLoad int |
| 2152 | loads int |
| 2153 | } |
| 2154 | |
| 2155 | func (v *sharedBlockingView) Load() error { |
| 2156 | v.loads++ |
nothing calls this directly
no outgoing calls
no test coverage detected