()
| 151 | } |
| 152 | |
| 153 | bind() { |
| 154 | this.domObserver = DOM.createMutationObserver(() => { |
| 155 | this.synchronizeOptions(); |
| 156 | this.synchronizeValue(); |
| 157 | }); |
| 158 | this.domObserver.observe(this.element, { childList: true, subtree: true, characterData: true }); |
| 159 | } |
| 160 | |
| 161 | unbind() { |
| 162 | this.domObserver.disconnect(); |
nothing calls this directly
no test coverage detected