(v)
| 179 | }; |
| 180 | |
| 181 | const setVisible: HighlightRenderer['setVisible'] = (v) => { |
| 182 | assertNotDisposed(); |
| 183 | visible = Boolean(v); |
| 184 | }; |
| 185 | |
| 186 | const dispose: HighlightRenderer['dispose'] = () => { |
| 187 | if (disposed) return; |
nothing calls this directly
no test coverage detected