()
| 266 | const list = [...annotations]; |
| 267 | return { |
| 268 | show() { |
| 269 | for (const a of list) { |
| 270 | a.show(); |
| 271 | } |
| 272 | }, |
| 273 | hide() { |
| 274 | for (const a of list) { |
| 275 | a.hide(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…