| 209 | func (r TextResult) Exists() bool { return r.found } |
| 210 | |
| 211 | type ButtonResult struct { |
| 212 | Label string |
| 213 | handler func() |
| 214 | tree *RenderedTree |
| 215 | found bool |
| 216 | } |
| 217 | |
| 218 | func (r ButtonResult) Exists() bool { return r.found } |
| 219 |
nothing calls this directly
no outgoing calls
no test coverage detected