* Dispose this LayersVariable instance from memory.
()
| 110 | * Dispose this LayersVariable instance from memory. |
| 111 | */ |
| 112 | dispose(): void { |
| 113 | this.assertNotDisposed(); |
| 114 | this.val.dispose(); |
| 115 | } |
| 116 | |
| 117 | protected assertNotDisposed(): void { |
| 118 | if (this.val.isDisposed) { |
nothing calls this directly
no test coverage detected